GIS数据共享:官方网站

vue

当前位置:首页 > language > H5 > vue

Vue3中Less 、Sass的使用

Vue3中Less 、Sass的使用

less的使用

在Vue项目中,需要通过npm安装相关包(开发依赖即可)

 【npm install less -D】【npm install less-loader -D】

  然后直接使用即可:

<style scoped>

.box1 {
width: 400px;
height: 400px;
background-color: antiquewhite;

.childBox {
width: 200px;
height: 200px;
background-color: aqua;
}
}
</style>

Sass的使用

在Vue项目中,需要通过npm安装相关包(开发依赖即可)

 【npm install sass -D】【npm install sass-loader -D】

  然后直接使用即可:

<style scoped>

.box1 {
width: 400px;
height: 400px;
background-color: antiquewhite;

.childBox {
width: 200px;
height: 200px;
background-color: aqua;
}
}
</style>


扫码查看

相关内容

文章评论

表情

共 0 条评论,查看全部
  • 这篇文章还没有收到评论,赶紧来抢沙发吧~

评论排行榜

热门标签