uni-app Scss使用data内的变量

话不多说直接上代码 

data() {
	return {
		hotbg:`url(${this.$imgUrl}index/top.png)no-repeat`
	}
},



<view :style="{'--hotbg':hotbg}">

</view>


.top{
	&::before{
		content: "";       
		display: inline-block;
		width: 50rpx;
		height: 30rpx;
		margin-right: 4rpx;
		background: var(--hotbg);
		background-size: 100% 100%;
	}
}

猜你喜欢

转载自blog.csdn.net/qq_42717015/article/details/131460919