使用 scoped 后,父组件的样式将不会渗透到子组件中css
若是想在使用scoped,不污染全局的状况下,依然能够修改子组件样式,可使用深度做用选择器html
.tree{ width: 100%; float: left; margin: 0 10px; } /deep/.tree .el-tree-node__content{ padding: 3px 2px; margin-right: 40px; }
vue官网:https://vue-loader.vuejs.org/guide/scoped-css.html#deep-selectorsvue