我懒,所以没有绑定失败的例子。
v-bind绑定背景图片,该容器(例如div)必须要设有width和height!不然你试试
正确绑定背景图片方式如下,直接上代码:
<template>
<div id="app">
<div
class="right-con"
:style="{backgroundImage: 'url(' + imgUrl + ')', backgroundSize:'500px 500px', height:'500px', width:'500px'}"
></div>
</div>
</template>
<script>
export default {
name: "App",
data() {
return {
imgUrl: require("./assets/123.jpg")
};
}
};
</script>
效果图:
网友评论