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>
posted @ 2018-06-29 11:19  坚持g  阅读(3725)  评论(0编辑  收藏  举报