mpvue——修改第三方组件样式

前言

 

我们都知道在vue中可以定义多个

 

私有

使用/deep/进行穿透,在mpvue中使用>>>穿透,编译会报错

.form-area {
      width: 100%;
      bottom: 1.88rem;
      .form-wrap {
        width: 340px;
        position: relative;
        left: 20px;
        .form-item {
          width: 100%;
          height: 50px;
          margin: 5px 0;
          border-radius: 10px;
          background-color: #fff;
        /deep/.van-cell {
            width: 240px !important;
            position: none !important;
          }
        }
      }

 

转载于:https://www.cnblogs.com/wangyang0210/p/10413022.html

你可能感兴趣的:(mpvue——修改第三方组件样式)