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