elementui 点击按钮弹出对话框
时间: 2023-02-06 19:15:32 浏览: 220
点击按钮弹出对话框...........
3星 · 编辑精心推荐
可以使用 Element UI 的 Dialog 组件来实现点击按钮弹出对话框的效果。
首先,在你的 template 中添加一个 Dialog 组件,并为其指定一个唯一的 id:
```
<template>
<el-dialog :visible.sync="dialogVisible" title="提示" width="30%">
对话框内容
</el-dialog>
</template>
```
然后,在你的 script 中添加一个变量来控制 Dialog 的可见性:
```
<script>
export default {
data() {
return {
dialogVisible: false,
};
},
};
</script>
```
最后,在你的 template 中的按钮元素上绑定一个点击事件,在事件处理函数中更改 dialogVisible 的值来控制 Dialog 的可见性:
```
<template>
<el-button @click="dialogVisible = true">点击弹出对话框</el-button>
<el-dialog :visible.sync="dialogVisible" title="提示" width="30%">
对话框内容
</el-dialog>
</template>
```
这样,当用户点击按钮时,Dialog 就会弹出,再次点击按钮或者在 Dialog 上点击关闭按钮时,Dialog 就会消失。
阅读全文