安装
npm install stylus --save
npm install stylus-loader --save
使用
Header.vue
<style lang="stylus">
@import "~@/assets/styles/varibles.styl"
.header
background: $bgColor
<style>
varibles.styl
$bgColor=#00bcd4
注意事项
stylus 版本过高会导致报错。
stylus UnhandledPromiseRejectionWarning: TypeError: loaderContext.getResolve is not a function
建议版本
stylus 0.45.5
stylus-loader 3.0.2
网友评论