mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
38 lines
681 B
Markdown
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
|
|
}
|
|
}
|
|
}
|
|
``` |