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

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
    }
  }
}