对话框内容
赞
踩
可以使用 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 就会消失。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。