Ant Design Vue 的 dialog 怎么用
时间: 2023-08-19 16:04:57 浏览: 590
Ant Design Vue 的 Dialog 对话框组件很容易使用,你可以按照以下步骤进行操作:
1. 在你的 Vue 组件中引入 Dialog 组件:
```javascript
import { defineComponent } from 'vue';
import { Button, Dialog } from 'ant-design-vue';
export default defineComponent({
components: {
Button,
Dialog,
},
...
});
```
2. 在 template 中使用 Button 组件,并且在点击时打开 Dialog:
```html
<template>
<div>
<Button type="primary" @click="showDialog">打开 Dialog</Button>
<Dialog v-model:visible="dialogVisible">
<p>这是 Dialog 的内容</p>
<template #footer>
<Button @click="dialogVisible = false">关闭</Button>
</template>
</Dialog>
</div>
</template>
```
3. 在 data 中定义 dialogVisible 变量,并且在 showDialog 函数中将它设置为 true:
```javascript
export default defineComponent({
components: {
Button,
Dialog,
},
data() {
return {
dialogVisible: false,
};
},
methods: {
showDialog() {
this.dialogVisible = true;
},
},
...
});
```
这样就可以在点击 Button 时打开 Dialog 了,并且 Dialog 的内容可以通过插入子组件或使用插槽来设置。同时,Dialog 的底部也可以通过使用插槽来自定义。
阅读全文