xgqfrms™, xgqfrms® : xgqfrms's offical website of cnblogs! xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

Vue scoped css deep All In One

Vue scoped css deep All In One

/deep/ 改为 ::v-deep

深度作用选择器

如果你希望 scoped 样式中的一个选择器能够作用得“更深”,例如影响子组件,你可以使用 >>> 操作符:

有些像 Sass 之类的预处理器无法正确解析 >>>。这种情况下你可以使用 /deep/ 或 ::v-deep 操作符取而代之——两者都是 >>> 的别名,同样可以正常工作。

https://vue-loader.vuejs.org/zh/guide/scoped-css.html#深度作用选择器

node-sass 支持 /deep/::v-deep

dart-sass 不支持 /deep/ , 必须改为 ::v-deep

demo


<style lang="scss" scoped>
.custom-chart {
    box-sizing: border-box;
    margin-top: 10px;
    background: #FFFFFF;
    border-radius: 4px;
    width: 100%;
    overflow-x: hidden;
    .category-select, .metric-select {
        width: 100px;
        /deep/ {
            .el-input {
                .el-input__inner {
                    border: none;
                }
            }
        }
    }
}
</style>


<style lang="scss" scoped>
.custom-chart {
    box-sizing: border-box;
    margin-top: 10px;
    background: #FFFFFF;
    border-radius: 4px;
    width: 100%;
    overflow-x: hidden;
    .category-select, .metric-select {
        width: 100px;
        ::v-deep {
            .el-input {
                .el-input__inner {
                    border: none;
                }
            }
        }
    }
}
</style>

refs



©xgqfrms 2012-2020

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!


posted @ 2022-01-24 14:56  xgqfrms  阅读(40)  评论(5编辑  收藏  举报