其他分享
首页 > 其他分享> > stylus快速上手

stylus快速上手

作者:互联网

    1.创建xxx.styl文件,定义变量

$bgColor = #00bcg4

    2.在其他页面的style区域里,先引入这个xxx.styl文件

<style>
    @import '../../xxx.styl'  //样式中引入样式,要在import前加@
    .header
        height:3rem
        width:.87rem
     color:$bgColor </style>

标签:父级,样式,xxx,height,stylus,header,styl,快速
来源: https://www.cnblogs.com/VCplus/p/11625964.html