naive-ui/demo/documentation/components/message/zhCN/icon.demo.md

21 lines
378 B
Markdown
Raw Normal View History

2020-02-04 13:40:10 +08:00
# 图标
```html
2020-09-12 03:28:40 +08:00
<n-button @click="createMessage">
2020-02-04 13:40:10 +08:00
漏斗图标
</n-button>
```
```js
2020-09-12 03:28:40 +08:00
import { h } from 'vue'
2020-02-04 13:40:10 +08:00
import mdHourglass from 'naive-ui/lib/icons/md-hourglass'
export default {
inject: ['message'],
2020-02-04 13:40:10 +08:00
methods: {
2020-09-12 03:28:40 +08:00
createMessage() {
this.message.warning("I never needed anybody's help in any way", {
2020-09-12 03:28:40 +08:00
icon: () => h(mdHourglass)
2020-02-04 13:40:10 +08:00
})
}
}
}
```