style 用vue 响应式怎么做呢?下面代码告诉你答案
:style="{backgroundSize: '100% 100%',backgroundImage: 'url(' + bgcImgUrl + ')',height:item.height - item.fontSize - 10 + 'px'}"
<div
:style="styleMediaObj"
>
</div>
computed:{
styleMediaObj() {
if (this.bgcImgUrl) {
return {
backgroundSize: '100% 100%'
}
}
},
}