element-ui:Dialog


Dialog 对话框

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

基本用法:

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

<el-button type="text" @click="dialogVisible = true">点击打开 Dialogel-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