Vue 配置stylus支持

安装必要的支持

1
2
3
4
5
#初始化项目
vue-sell-study
#安装stylus支持
yarn add stylus
yarn add stylus-loader

修改stylus lang 支持

1
2
3
4
5
6
7
8
9
<style lang="stylus" rel="stylesheet/stylus">
.hello {
font-size 50px
color red
.t1 {
color blue
}
}
</style>