说明,使用的是npm init webpack 项目名方式创建的项目,无需手动配置webpack

 

1.安装less依赖

npm install less less-loader --save

 

2.xx.vue组件中使用less

<style lang="less" rel="stylesheet/less">

.tab{
display:flex;
width:100%;
height:40px;
line-height:40px;
}
.tab .tab-item{
flex:1;
text-align:center;
&>a{display: block;
&.active{color: @color}
}
}
@color:red;
</style>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-24
  • 2021-10-07
  • 2021-05-28
  • 2021-04-21
  • 2021-09-27
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-07-28
  • 2022-02-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案