mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
487001d697
.demo.md for component demo .demo-entry.md for demo entry .md for common docs
376 B
376 B
Closable
Set closable
to make message closable by a click.
<n-button @click="emitInfo">
Open a Message
</n-button>
export default {
methods: {
emitInfo() {
this.$NMessage.info(
"I don't know why nobody told you how to unfold your love",
{
closable: true,
duration: 5000
}
)
}
}
}