一、使用">>>"符号更改其余组件的样式vue
例如sass
<style lang="stylus" scoped>
.a >>> .b
/*样式*/
</style>
二、当lang = less or sass 时 解析不了">>>"符号,则使用 /deep/
例如less
<style lang="less" scoped>
.a /deep/ .b {
/*样式*/
}
</style>
三、.vue界面中使用两个style标签 ,一个加scoped,一个不加
例如stylus
<style lang="less"> 样式
</style>
<style lang="less" scoped>
</style>