Vue 使用/deep/在当前页面修改Avue-CRUD组件的默认样式

错误示范1(会影响其他页面的样式):

    <style>
    .avue-crud__menu {
      display: none;
    }
    </style>

错误示范2(样式无效):

    <style lang="scss" scoped>
    .avue-crud__menu {
      display: none;
    }
    </style>

正确示范:

    <style lang="scss" scoped>
    /deep/ .avue-crud__menu {
      display: none;
    }
    </style>

或者:

    <style lang="scss" scoped>
    ::v-deep .el-divider--vertical {
      height: auto;
    }
    </style>

posted @ 2021-05-07 16:59  pxuan  阅读(2409)  评论(0编辑  收藏  举报