Vue css scoped理解

228 阅读1分钟

子CSS 一旦设置scoped , 父想访问子一定要设置scoped,否则无效。

而且父需要使用 /deep/ 或者 ::v-deep 访问子 则

<style scoped lang="scss">
 #app { 
      /deep/ a { color: rgb(196, 50, 140) }
      ::v-deep a { color: rgb(196, 50, 140) }
 }
</style>