当前位置:   article > 正文

[UniApp][Vue]页面style的scoped默认是开启的,如果一个组件渲染后后包括子标签,会造成页面自己写的css无效的解决办法(推荐)_uniapp scoped

uniapp scoped

页面style的scoped默认是开启的,如果一个组件渲染后后包括子标签,会造成页面自己写的样式无效

UniApp页面样式默认规则是:H5端为了隔离页面间的样式默认启用了scoped

问题详情

渲染前的页面样式代码,style并未设置scoped,写在外部文件引用也一样,UniApp默认是开启的

  1. <style>
  2. switch.blue-checked.uni-switch-input {
  3. background-color: #007aff !important;
  4. border-color: #007aff !important;
  5. color: #ffffff !important;
  6. border-color: #007aff !important;
  7. }
  8. </style>

 渲染后的css代码,会自动添加data-v-xxxxxx属性

  1. uni-switch.blue-checked.uni-switch-input[data-v-82079b42] {
  2. background-color: #007aff !important;
  3. border-color: #007aff !important;
  4. color: #ffffff !important;
  5. border-color: #007aff !important;
  6. }

组件渲染生成的switch组件代码,生成了很多子标签,但只在本组件加上了scoped的data-v-xxxxxx,子标签未自动添加,所以上面渲染后的css代码就无法生效

  1. <uni-switch data-v-82079b42="" class="blue-checked">
  2. <div class="uni-switch-wrapper">
  3. <div class="uni-switch-input uni-switch-input-checked"
  4. style="background-color: rgb(0, 122, 255); border-color: rgb(0, 122, 255);"></div>
  5. <div class="uni-checkbox-input uni-checkbox-input-checked" style="color: rgb(0, 122, 255); display: none;">
  6. </div>
  7. </div>
  8. </uni-switch>

解决办法

1、使用scoped穿透 

css使用 >>> .test{ xxx }
scss、less使用 /deep/ .test{ xxx }

css中使用>>>来标识scoped的data-v-xxxxxx所在位置,>>>可以写在任何位置,写在哪,data-v-xxxxxx就生成在哪里,如下

  1. <style>
  2. switch.blue-checked>>> .uni-switch-input {
  3. background-color: #007aff !important;
  4. border-color: #007aff !important;
  5. color: #ffffff !important;
  6. border-color: #007aff !important;
  7. }
  8. </style>

加上>>>后,上面代码渲染的css代码如下,这样我们自己写的css就生效了

  1. uni-switch.blue-checked[data-v-82079b42] .uni-switch-input {
  2. background-color: #007aff !important;
  3. border-color: #007aff !important;
  4. color: #ffffff !important;
  5. border-color: #007aff !important;
  6. }

2、在全局app.vue引入样式文件或写在style中,app.vue默认没有开启scoped,不会生成属性data-v-xxxxxx

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/280421
推荐阅读
相关标签
  

闽ICP备14008679号