vue中的图片必须require进来

html

<image :src="sceneSrc" mode=""></image>            //图片
<view class="tab"  :style="tabSrc">背景图片</view>    

js

图片image

data(){
         return(){
                sceneSrc:require('../../static/game-scene.png')
         }          
}   

背景图片(添加一个style)

data(){
         return(){
                tabSrc:{
                      backgroundImage: "url(" + require("../../static/yes.png") + ")",
                }
         }          
}      
有问题可直接留言,望各位与我都可以成为技术大牛。
原文地址:https://www.cnblogs.com/xhxdd/p/11987153.html