发布网友 发布时间:2022-04-23 00:46
共1个回答
热心网友 时间:2022-04-22 06:39
这个直接在.vue里写less好像只要安装
"less": "^2.3.1", // less-loader依赖less
"less-loader": "^2.2.3"
不需要配置就能用了
不过貌似需要<style lang='less'></style>
<template>
<div class="test">
<div class="test-item"></div>
</div>
</template>
<style lang='less'>
.test {
width: 100px;
height: 100px;
background: #f00;
.test-item {
width: 50px;
height: 50px;
background: #ff0;
}
}
</style>