[分享][Vue踩坑记]scoped CSS

what’s scoped CSS ?

当 <style> 标签有 scoped 属性时,它的 CSS 只作用于当前组件中的元素。

场景一:

在 scoped CSS 下 改不动样式!!!

例: (我们尝试修改 element-ui 的 input 组件的样式并只在 app.vue 下生效)

ok…拿起键盘…

<template>
  <div id="app">
    <el-input  class="text-box" v-model="text"></el-input>
  </div>
</template>

<script>
export default {
  name: 'App',
  data() {
    return {
      text: 'hello'
    };
  }
};
</script>

<style lang="less" scoped>
.text-box {
   input {
    width: 166px;
    text-align: center;
  }
}
</style>

嗖嗖一顿敲…

满怀期待的看向浏览器…

WC.. 没效果???

原因:

使用 scoped 后,父组件的样式将不会渗透到子组件中。

解决方法:

使用深度作用选择器 /deep/

<template>
  <div id="app">
    <el-input v-model="text" class="text-box"></el-input>
  </div>
</template>

<script>
export default {
  name: 'App',
  data() {
    return {
      text: 'hello'
    };
  }
};
</script>

<style lang="less" scoped>
.text-box {
  /deep/ input {
    width: 166px;
    text-align: center;
  }
}
</style>

大功告成

场景二:

动态生成的DOM类名样式不作用!

解决方法:

<template>
  <div id="app">
    <div v-html="text"></div>
  </div>
</template>

<script>
export default {
  name: 'App',
  data() {
    return {
      text: '<span class="red">红色<span>'
    };
  }
};
</script>

<style lang="less" scoped>
/deep/ .red {
  color: #f33;
}
</style>

参考文档

之后会持续分享在Vue中遇到的一些坑哈~

如果有帮助到你,请给我 star

    原文作者:null仔
    原文地址: https://segmentfault.com/a/1190000015226237
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞