elementui:Dialog

Dialog 对话框

在保留当前页面状态的情况下,告知用户并承载相关操作。

基本用法:

Dialog 弹出一个对话框,适合需要定制性更大的场景。

<el-button type="text" @click="dialogVisible = true">点击打开 Dialog</el-button>

<el-dialog
  title="提示"
  :visible.sync="dialogVisible"
  width="30%"
  :before-close="handleClose">
  <span>这是一段信息</span>
  <span slot="footer" class="dialog-footer">
    <el-button @click="dialogVisible = false">取 消</el-button>
    <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
  </span>
</el-dialog>

<script>
  export default {
    data() {
      return {
        dialogVisible: false
      };
    },
    methods: {
      handleClose(done) {
        this.$confirm('确认关闭?')
          .then(_ => {
            done();
          })
          .catch(_ => {});
      }
    }
  };
</script>

https://element.eleme.cn/#/zh-CN/component/dialog

原文地址:https://www.cnblogs.com/2008nmj/p/15572049.html