npm init @vitejs/app
cd vue02
npm install
npm run dev
npm install less
npm install less-loader@5.0.0
// 根组件中template标签中编写html
// style中使用嵌套css
#container {
width: 300px;
height: 300px;
border: 1px solid black;
background-color: #f90;
.container2{
width: 100px;
height: 100px;
border: 1px solid green;
background-color:white;
span{
font-weight: 200;
font-size: 12px;
color: red;
}
}
}
@color: black;
@m: height;
@selector: .container3;
@{selector}{
width: 200px;
@{m}: 300px;
border: 1px solid red;
p{
color: @color;
}
}