The scroll bar is not displayed but it can be scrolled



<style lang='scss' scoped>
//新建弹窗尺寸
.el-drawer__wrapper ::v-deep.demo-drawer{
  width: calc(100vw - 211px)!important;
  overflow: scroll ;
}
::v-deep .dialogPreMockVisible .el-dialog__body .container::-webkit-scrollbar {display:none}
<style>

 

Note that under scss is:: v-deep 

less is /deep/

Guess you like

Origin blog.csdn.net/weixin_48371382/article/details/115008373