父组件:
<template>
<div class="wrap">
<header></header>
<main>
<ChildCompoment></ChildCompoment>
</main>
</div>
</template>
<style lang="scss" scoped>
.wrap {
height: 100%;
}
</style>
子组件:
<template>
<div class="wrap"></div>
</template>
<style lang="scss" scoped>
</style>
上面的代码 子组件的 根节点元素( class 为 wrap )也会受到影响。
引用 Vue-Loader 文档的说明:
Child Component Root Elements
With scoped, the parent component's styles will not leak into child components. However, a child component's root node will be affected by both the parent's scoped CSS and the child's scoped CSS. This is by design so that the parent can style the child root element for layout purposes.
那这样的话,我要在子组件的根节点上写 class 就要十分小心,要考虑父组件是不是有用到了。
有什么比较优雅的方式,让我可以在每个组件里自由的写 class
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.