一、什么是scoped,为什么要用

在vue组件中的style标签上,有一个特殊的属性:scoped。

当一个style标签拥有scoped属性时,它的CSS样式就只能作用于当前的组件,通过该属性,可以使得组件之间的样式不互相污染。

注意:实际开发中,建议在每个组件的 style 身上都加上 scoped 属性。

二、scoped的原理
1、为组件实例生成一个唯一标识,给组件中的每个标签对应的dom元素添加一个标签属性:data-v-xxxx
2、给<style scoped>中的每个选择器的最后一个选择器添加一个属性选择器,原选择器[data-v-xxxx],如:原选择器
.container #id div,则更改后选择器为.container #id div[data-v-xxxx]
三、示例

转译前的vue代码

<template>
	<div class="example">hello world</div>
</template>
<style scoped>
.example {
	color: red;
}
</style>

转译后:

<template>
	<div class="example" data-v-49729759>hello world</div>
</template>
<style scoped>
.example[data-v-49729759] {
	color: red;
}
</style>
四、样式穿透
1、为什么需要穿透scoped?

引用了第三方组件后,需要在组件中局部修改第三方组件的样式,而又不想去除scoped属性造成组件之间的样式污染。此时只能通

过特殊的方式穿透scoped。

2、样式穿透的方法

(1)如果项目使用的是css原生样式,直接使用 >>> 穿透修改

/*  用法:  */
div >>> .cla {
	color: red;
}

(2)项目中用到了预处理器 scss 、sass、less 操作符 >>> 可能会因为无法编译而报错 。可以使用 /deep/ 注意:vue-cli3以上版本不可以

/*  用法:  */
div /deep/ .cla {
	color: red;
}

(3)::v-deep

/*  用法:  */
div ::v-deep .cla {
	color: red;
}
五、样式穿透原理

scoped后选择器最后默认会加上当前组件的一个标识,比如[data-v-49729759]

用了样式穿透后,在deep之后的选择器最后就不会加上标识。

1、示例

(1)父组件

<template>
  <div class="cssdeep">
    <!-- 样式穿透 -->
    <cssdeepcom></cssdeepcom>
  </div>
</template>

<script>
import cssdeepcom from '../components/cssdeepcom'
export default {
  data(){
    return{
    }
  },
  components:{
    cssdeepcom,
  },
}
</script>
<style lang="less" scoped>
.cssdeep /deep/ .cssdeepcom{
  background: blue;
}
</style>

(2)子组件

<template>
  <div class="cssdeepcom"></div>
</template>

<script>
export default {
  data(){
    return{
    }
  },
}
</script>
<style lang="less" scoped>
.cssdeepcom{
  width: 100px;
  height: 100px;
  background: red;
}
</style>
2、效果图

可以看到父组件用了穿透后再cssdeepcom的后面没有再跟标识[data-v-xxxx],而是在deep的上一级的最后跟上了父组件的标识。

Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐