mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
345 B
345 B
Timing
Specify the duration of messages.
<n-button @click="emitInfo">
Last for 5 second
</n-button>
export default {
data() {
return {}
},
methods: {
emitInfo() {
this.$NMessage.info(
"I don't know why nobody told you how to unfold your love",
{ duration: 5000 }
)
}
}
}