其他分享
首页 > 其他分享> > vue 深度选择器前世今生

vue 深度选择器前世今生

作者:互联网

node-sass 不支持 >>> 语法,推荐改用 /deep/。后来,node-sass 被 deprecated,推荐使用 dart-sass。但 dart-sass 又和 /deep/ 有冲突。所以,如果你使用 vue2 同时又使用 dart-sass,只剩一种选择 ::v-deep

<style scoped>
.a ::v-deep .b {
  /* ... */
}
</style>

现在,你通过 npm i sass 命令安装的既是 dart-sass。

在 vue3 中,::v-deep 写法又被抛弃了,改用 :deep()

<style scoped>
.a :deep(.b) {
  /* ... */
}
</style>

参考资料

标签:node,...,vue,sass,deep,dart,今生,https,选择器
来源: https://www.cnblogs.com/guangzan/p/16466027.html