mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
744 B
744 B
Mask Closable
You can make mask click not to close modal when using v-model on modal.
<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"
/>
export default {
data () {
return {
modalActive: false,
}
},
methods: {
cancelCallback () {
this.$NMessage.success('Cancel')
this.modalActive = false
},
submitCallback () {
this.$NMessage.success('Submit')
this.modalActive = false
}
}
}