额。。。这个直接在.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> 结果:
额。。。这个直接在.vue里写less好像只要安装
不需要配置就能用了
不过貌似需要<style lang='less'></style>
结果: