怎么直接中vue组件的style使用less,不是引入less

发布网友 发布时间: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>

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com