naive-ui/demo/documentation/components/message/zhCN/timing.md
2020-02-04 13:40:10 +08:00

23 lines
340 B
Markdown

# 时间
设定 Message 的持续时间。
```html
<n-button @click="emitInfo">
持续 5 秒
</n-button>
```
```js
export default {
data() {
return {}
},
methods: {
emitInfo() {
this.$NMessage.info(
"I don't know why nobody told you how to unfold your love",
{ duration: 5000 }
)
}
}
}
```