sass、scss、stylus 在 vue 中修改 eleme
2021-11-30 本文已影响0人
sunxiaochuan
参考地址
代码示例
- sass
<style lang="sass" scoped>
.el-table
::v-deep
.el-table__header-wrapper,th.el-table__cell,.cell
overflow: inherit
</style>
- scss
<style lang="scss" scoped>
.el-table{
/deep/ .el-table__header-wrapper,/deep/ th.el-table__cell,.cell{
overflow: inherit;
}
}
</style>
- stylus
<style lang="stylus" scoped>
.el-table
>>>
.el-table__header-wrapper,th.el-table__cell,.cell
overflow: inherit
</style>