目录
  • 1、效果图
  • 2、上代码

1、效果图

element中drawer模板的实现

2、上代码

<template>
    <div>
        <el-drawer
            size="100%"
            :visible.sync="drawer"
            style="position: absolute;"
            class="details"
            :modal-append-to-body="false"
            :modal = "false"
            :before-close="handleClose">
        </el-drawer>
    </div>
</template>
<script>
export default {
    data() {
        return {
            drawer: false,
        }
    },
    methods: {
        /** 初始化 */
        init(){
            this.drawer = true
        },
        /** 关闭回调*/
        handleClose(){
            this.drawer = false
        }
    }
}
</script>
<style lang="scss" scoped>
    ::v-deep .el-drawer__header {
        font-size: 22px;
        text-align: center;
        margin-bottom: 16px;
        padding: 0;
        .el-drawer__close-btn{
            background-color: rgb(255, 77, 79);
            color: white;
        }
    }
    ::v-deep .el-drawer__body {
        padding: 0px;
    }
    .details {
        width: 80%;
        margin-right: 0px;
        margin-left: 20%;
        box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
    }
</style>
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。