手册目录
Vue教程
Vue扩展
为了避免一个组件中的样式影响其他组件中元素的样式,我们在 <style> 标签上使用"scoped"属性:
CompOne.vue 中的 <style> 标签被赋予了 scoped 属性:
<template>
<p>This p-tag belongs to 'CompOne.vue'</p>
</template>
<script></script>
<style scoped>
p {
background-color: pink;
width: 150px;
}
</style>
运行示例 »
相关视频
科技资讯
24小时阅读榜
1
2
3
4
5
6
7
8
9
10
精品课程
共5课时 | 17.4万人学习
共49课时 | 78.2万人学习
共29课时 | 62.5万人学习
共25课时 | 39.7万人学习
共43课时 | 73.8万人学习