naive-ui/demo/documentation/components/modal/enUS/mask-closable.demo.md
2020-09-03 23:40:38 +08:00

40 lines
744 B
Markdown

# Mask Closable
You can make mask click not to close modal when using v-model on modal.
```html
<n-button
@click="modalActive = true"
>
Start Me up
</n-button>
<n-modal
v-model="modalActive"
:mask-closable="false"
preset="confirm"
title="Confirm"
content="Are you sure?"
:closable="false"
positive-text="Confirm"
@positive-click="submitCallback"
@negative-click="cancelCallback"
negative-text="Cancel"
/>
```
```js
export default {
data () {
return {
modalActive: false,
}
},
methods: {
cancelCallback () {
this.$NMessage.success('Cancel')
this.modalActive = false
},
submitCallback () {
this.$NMessage.success('Submit')
this.modalActive = false
}
}
}
```