vue-cli 使用less的方法

安装方式:
npm install less less-loader --save
或者
cnpm install less less-loader --save

安装之后,在vue组件中的html中加入lang="less"就可以使用less了

<template>
//code..
</template>

<script>
//code...
</script>

<style scoped  lang="less">
    .box{
        p{
            span{ color:red;}
        }
    }
</style>

猜你喜欢

转载自www.cnblogs.com/xk-g/p/9242513.html