mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-30 12:52:43 +08:00
378 B
378 B
图标
<n-button @click="createMessage">
漏斗图标
</n-button>
import { h } from 'vue'
import mdHourglass from 'naive-ui/lib/icons/md-hourglass'
export default {
inject: ['message'],
methods: {
createMessage() {
this.message.warning("I never needed anybody's help in any way", {
icon: () => h(mdHourglass)
})
}
}
}