uni-app在手机上背景图片不显示

uni-app解决无法加载本地图片的方法【动态加载背景图片*唯一的解决办法】

特别注意:千万别忘记了【`url(${indexBackgroundImage})`】

<template>
	<view class="index" :style="{backgroundImage:`url(${indexBackgroundImage})`,backgroundSize: 'cover'}">
		<!--你的内容-->
	</view>
</template>
 
<script>
	
	import indexBackgroundImage from "@/static/img/account_index.jpg"
	
	export default {
		data() {
			return {
				indexBackgroundImage:indexBackgroundImage
			}
		},
		methods: {
			
		}
	}
</script>
 
 
<style lang="scss" scoped="">
</style>

转自:https://blog.csdn.net/weixin_43343144/article/details/90300788

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章