剛剛接觸nuxt,記錄下學習過程,以備后用,這個less 的使用真是超級簡單方便,贊一個
第一步 安裝
npm install less less-loader --save-dev
第二步 使用
<style scoped lang="less">
.container{
margin: 100px 0 ;
border-top: 1px solid #7f828b;
p{
font-size: 22px;
color: red;
line-height: 30px;
text-align: center;
}
.flexCon{
display: flex;
justify-content: space-around;
.flexDiv{
text-align: center;
color: blue;
}
}
}