解决 Vue 项目中使用 iView 组件库设置样式不生效的问题

1,471 阅读1分钟

找到要设置样式的类名,直接按照下面写法设置就可以了!

<style lang="less" scoped>
@deep: ~'>>>';
@{deep}.ivu-transfer-operation {
    visibility: hidden !important;
}
</style>