Vue css scoped理解 jason_yang 2021-06-26 268 阅读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>