mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
487001d697
.demo.md for component demo .demo-entry.md for demo entry .md for common docs
30 lines
459 B
Markdown
30 lines
459 B
Markdown
# 使用 Confirm 预设的插槽
|
|
插槽也会随着预设变动。
|
|
```html
|
|
<n-button
|
|
@click="modalActive = true"
|
|
>
|
|
来吧
|
|
</n-button>
|
|
<n-modal v-model="modalActive"
|
|
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,
|
|
}
|
|
}
|
|
}
|
|
``` |