解决vue2组件间相同命名的class样式干扰的问题
1、问题描述:在组件a.vue和b.vue中a.vue<style>.top-notice {height: 38px;}</style>b.vue<style>.top-notice {height: 44px;}</style>出现上面情况时,组件a和组件b之间的样式会互...
·
1、问题描述:
在组件a.vue和b.vue中
a.vue
<style>
.top-notice {
height: 38px;
}
</style>
b.vue
<style>
.top-notice {
height: 44px;
}
</style>
出现上面情况时,组件a和组件b之间的样式会互相干扰
2、解决方法
将<style></style>改为<style scoped></style>,即可解决。scoped表此样式只在当前页面有效。
3、Vue Loader官网文档
更多推荐
已为社区贡献10条内容
所有评论(0)