Vue 中 background-image 的使用
Vue 中 background-image 的 url 属性不能直接写字符串,需要使用 require
引入图片,然后使用 v-bind
绑定到 background-image
的 url
属性上
1 | <view class="loading-img" :style="{background:'url('+require('static/img/IMG_3969.jpeg')+')', backgroundSize:'cover'}"></view> |
评论