naive-ui/demo/documentation/components/modal/zhCN/maskClosable.demo.md

40 lines
724 B
Markdown
Raw Normal View History

2020-02-04 14:55:55 +08:00
# 遮罩关闭
2020-05-30 21:41:10 +08:00
你可以在使用 v-model 的时候让点击遮罩不关闭。
2020-02-04 14:55:55 +08:00
```html
<n-button
@click="modalActive = true"
2020-02-04 14:55:55 +08:00
>
来吧
2020-02-04 14:55:55 +08:00
</n-button>
<n-modal
v-model="modalActive"
2020-02-04 14:55:55 +08:00
:mask-closable="false"
preset="confirm"
title="确认"
content="你确认"
:closable="false"
positive-text="确认"
@positive-click="submitCallback"
@negative-click="cancelCallback"
negative-text="算了"
/>
```
```js
export default {
data () {
return {
modalActive: false,
2020-02-04 14:55:55 +08:00
}
},
methods: {
cancelCallback () {
this.$NMessage.success('算了')
this.modalActive = false
2020-02-04 14:55:55 +08:00
},
submitCallback () {
this.$NMessage.success('确认')
this.modalActive = false
2020-02-04 14:55:55 +08:00
}
}
}
```