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

38 lines
681 B
Markdown

# Use Preset Confirm
An example of preset `confirm`.
```html
<n-button
@click="modalActive = true"
>
Start Me up
</n-button>
<n-modal v-model="modalActive"
preset="confirm"
title="Confirm"
content="Are you sure?"
:closable="false"
positive-text="Submit"
@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
}
}
}
```