对话框内容
当前位置:   article > 正文

elementui 点击按钮弹出对话框

el-button触发提示框

可以使用 Element UI 的 Dialog 组件来实现点击按钮弹出对话框的效果。

首先,在你的 template 中添加一个 Dialog 组件,并为其指定一个唯一的 id:

  1. <template>
  2. <el-dialog :visible.sync="dialogVisible" title="提示" width="30%">
  3. 对话框内容
  4. </el-dialog>
  5. </template>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

然后,在你的 script 中添加一个变量来控制 Dialog 的可见性:

  1. <script>
  2. export default {
  3. data() {
  4. return {
  5. dialogVisible: false,
  6. };
  7. },
  8. };
  9. </script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

最后,在你的 template 中的按钮元素上绑定一个点击事件,在事件处理函数中更改 dialogVisible 的值来控制 Dialog 的可见性:

  1. <template>
  2. <el-button @click="dialogVisible = true">点击弹出对话框</el-button>
  3. <el-dialog :visible.sync="dialogVisible" title="提示" width="30%">
  4. 对话框内容
  5. </el-dialog>
  6. </template>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

这样,当用户点击按钮时,Dialog 就会弹出,再次点击按钮或者在 Dialog 上点击关闭按钮时,Dialog 就会消失。

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/104799
推荐阅读
相关标签
  

闽ICP备14008679号