vue中使用less
首先vue開發環境已經安裝成功
當所有東西都 准備好之后 :
第一步:
安裝less依賴,npm install less less-loader --save
第二步:
安裝less依賴,npm install -g less
第三步:
main.js 全局引入
var Less = require('Less');
第四步:
在組件中
<style scoped lang="less">
@width: 100%;
@height: 100px;
@color: red;
.container{
width: @width;
height: @height;
background-color: @color;
margin-bottom: 5px;
};
</style>