mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
487001d697
.demo.md for component demo .demo-entry.md for demo entry .md for common docs
23 lines
381 B
Markdown
23 lines
381 B
Markdown
# 可关闭
|
|
设定 `closable` 使 Message 可以通过点击关闭。
|
|
```html
|
|
<n-button @click="emitInfo">
|
|
打开信息
|
|
</n-button>
|
|
```
|
|
|
|
```js
|
|
export default {
|
|
methods: {
|
|
emitInfo() {
|
|
this.$NMessage.info(
|
|
"I don't know why nobody told you how to unfold your love",
|
|
{
|
|
closable: true,
|
|
duration: 5000
|
|
}
|
|
)
|
|
}
|
|
}
|
|
}
|
|
``` |