<div class="bg-box" :style="getBackgroundStyle(cart)">
//cart是图片路径
const getBackgroundStyle = (imageUrl:any) => {
return {
'background-image': `url(${imageUrl})`,
'background-size': '100% 100%',
'background-repeat': 'no-repeat',
};
}
05-27
3019

01-26
7541

03-21