vue 深度做用選擇器

使用 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

相關文章
相關標籤/搜索