• vue 中父级样式深度覆盖子组件


    一、概述

    项目需要的原因,在sub组件的父级list组件中需要用到xhcj组件,同时sub组件中也用到了xhcj组件,两个地方代码逻辑是相同,仅仅是样式有些微的差别,所以决定共用组件,然后覆盖样式。

    style标签上的scoped属性会致使样式只作用于当前组件,对子组件是不起作用的,但是不加scoped会使父级引入的xhcj和这里引用的xhcj样式都变化,所以也是不可以的。

    二、解决方法

    这是最开始写的版本,在sub中,我写了两个style标签,需要覆盖的那部分没有加scoped属性,也实现了我需要的效果,但是写两个style标签还是觉得不太合适。

    <style scoped lang='scss'>
       ...
    </style>
    <style lang="scss">
    //.subscribe  这个样式sub组件中的,是为了覆盖这个组件下面的xhcj组件的样式  
      .subscribe .xhjj{
        border: none;
        position: static;
        background: transparent;
         auto;
        height: auto;
        .sbottom{
          height: auto;
          overflow: inherit;
          overflow-x: inherit;
          .treeFirst{
            border: none;
            background: transparent;
          }
          .flex-w-wrap{
            background-color: transparent!important;
            .treethird{
               25%;
            }
          }
        }
      }
    
    </style>

     然后改成了下面这个版本

    <style scoped lang="scss">
      ...... 
      .subscribe /deep/ .xhjj{
        border: none;
        position: static;
        background: transparent;
         auto;
        height: auto;
        .sbottom{
          height: auto;
          overflow: inherit;
          overflow-x: inherit;
          .treeFirst{
            border: none;
            background: transparent;
          }
          .flex-w-wrap{
            background-color: transparent!important;
            .treethird{
               25%;
            }
          }
        }
      }
    
    </style>

    重点位置已经标红,这里有了scoped属性,不再使用两个style标签去写。

    但是使用/deep/可以深度选择到子组件,也就不限于样式只对当前组件有效了。

    /deep/可以用>>>进行替代,但是>>>这个某些预编译器可能无法正常解析,所以可以使用/deep/进行代替,作用是一样。

    本文参考链接:

    https://blog.csdn.net/qq_40851816/article/details/95213145

  • 相关阅读:
    [BFS][链表][二分][STL]JZOJ 5875 听我说,海蜗牛
    [SPFA]JZOJ 5869 绿洲
    [Splay]Luogu 3960 NOIP2017 列队
    [扩欧]JZOJ 5855 吃蛋糕
    [模拟退火][堆优化Prim]2017TG Day2 T2 宝藏
    [并查集]奶酪
    [容斥]JZOJ 5843 b
    JS Undefined 类型
    Python logging 模块
    14.浏览器屏幕缩放bug修复
  • 原文地址:https://www.cnblogs.com/xiao987334176/p/14520517.html
Copyright © 2020-2023  润新知