mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
23 lines
340 B
Markdown
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 }
|
|
)
|
|
}
|
|
}
|
|
}
|
|
``` |