比如背景图
static->scss->mixin.scss
@mixin bgImg($w: 0, $h: 0, $img: '', $size: 100% 100%) {
width: $w;
height: $h;
background: url($img) no-repeat;
background-size: $size;
}
在uni.scss引入
@import '@/static/scss/mixin.scss';
在page->index->index.vue使用
<style lang="scss" scoped>
.container{
@include bgImg(100%, 150rpx, "../../static/images/tourist/top.png");
}
</style>
报错附近第二张