封装element-ui的dialog组件

Posted loveyunk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了封装element-ui的dialog组件相关的知识,希望对你有一定的参考价值。

封装组件:

<template>
    <div class="dialog-container">
        <el-dialog
            title="title"
            :visible.sync="visible"
            @close="$emit(‘update:show‘, false)"
            :show="show">
            <span>this is a dialog.</span>
        </el-dialog>
    </div>
</template>

<script>
    export default {
        data () {
            return {
                visible: this.show
            };
        },
        props: {
            show: {
                type: Boolean,
                default: false
            }
        },
        watch: {
            show () {
                this.visible = this.show;
            }
        }
    };
</script>

使用:

<template>
    <div class="container">
        <z-dialog :show.sync="show"></z-dialog>
        <button @click="open">click</button>
    </div>
</template>

<script>
    import ZDialog from ‘./dialog‘;

    export default {
        data () {
            return {
                show: false
            };
        },
        methods: {
            open () {
                this.show = true;
            }
        },
        components: {
            ZDialog
        }
    };
</script>

 

以上是关于封装element-ui的dialog组件的主要内容,如果未能解决你的问题,请参考以下文章

element-ui 组件扩展 - dialog嵌套问题

基于element-ui的后台系统表格dialog筛选自定义按钮分页的一次性封装

element-ui 弹出组件的遮罩层在弹出层dialog模态框的上面

element-ui 点击编辑弹出dialog组件中select组件绑定值改变,但是不触发change事件

更改element-ui dialog 遮罩层的透明度

element-ui弹窗组件再次打开时残留上次打开时的数据