在微信小程序中,有一个叫做 “组件样式隔离” 的内容:官网文档链接
解决:
在父组件中添加 options:
export default {
options: {
styleIsolation: "apply-shared"
},
data(){},
props: {},
}
styleIsolation 选项:
在微信小程序中,有一个叫做 “组件样式隔离” 的内容:官网文档链接
解决:
在父组件中添加 options:
export default {
options: {
styleIsolation: "apply-shared"
},
data(){},
props: {},
}
styleIsolation 选项: