element中drawer模板的实现
1、效果图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>到此这篇关于element中drawer模板的实现的文章就介绍到这了,更多相关element drawer模板内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
来源:https://www.jb51.net/javascript/291959ani.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!
页:
[1]