当在scope样式中使用/deep/飘红报错时

当在scope样式中使用/deep/飘红报错时,可以使用::v-deep代替。

<style lang="scss" scoped>
::v-deep {
  .van-index-anchor {
    padding: 0;
  }
}
</style>

这和/deep/是一样的效果。

原文地址:https://www.cnblogs.com/hukuangjie/p/13614325.html