sass 中使用/deep/报错(已解决)
<style scoped lang="sass">
.main_wrapper
padding: 0 53px
position: relative
top: -20px
/deep/ .el-tabs__item
height: 30px
line-height: 30px
color: #fff!important
</style>
<style scoped lang="sass">
.main_wrapper
padding: 0 53px
position: relative
top: -20px
::v-deep .el-tabs__item
height: 30px
line-height: 30px
color: #fff!important
</style>
解决方法:
尝试用 ::v-deep 替换 /deep/ ,成功解决了问题。
npm rebuild node-sass
npm update