Vue3.0警告:[@vue/compiler-sfc] the >>> and /deep/ combinators have been deprecated

799 阅读1分钟

面试中曾经问到过的一个小细节部分,Vue3.0中>>>和/deep/已经被弃用,需要怎么解决深度修改css的问题呢?

  • Vue2.0+用到的方法:
        & /deep/ .van-radio--horizontal {
            color: red;
        }
  • Vue3.0+中的解决办法:
        & :deep(.van-radio--horizontal) {
            color: red;
        }