naive-ui/demo/documentation/components/modal/zhCN/presetConfirmSlot.demo.md

30 lines
459 B
Markdown
Raw Normal View History

# 使用 Confirm 预设的插槽
插槽也会随着预设变动。
2020-02-04 14:55:55 +08:00
```html
<n-button
@click="modalActive = true"
2020-02-04 14:55:55 +08:00
>
来吧
2020-02-04 14:55:55 +08:00
</n-button>
<n-modal v-model="modalActive"
2020-02-04 14:55:55 +08:00
preset="confirm"
title="Confirm"
>
<template v-slot:header>
<div>标题</div>
</template>
<div>内容</div>
<template v-slot:action>
<div>操作</div>
</template>
</n-modal>
```
```js
export default {
data () {
return {
modalActive: false,
2020-02-04 14:55:55 +08:00
}
}
}
```