uni-app在h5端运行报错Error in mounted hook: "TypeError: Cannot read property ‘length’ of undefined

能正常运行但是报错
UNI-APP_uni-app在h5端运行报错Error in mounted hook: “TypeError: Cannot read property ‘length‘ of undefined-小白菜博客
开始始终找不到错误所在,经过一系列的排除发现是图片路径问题!
错误写法:

imgOff:"../../static/img/xingcheng-.png",

正确写法:
在我理解应该是nui-app不能使用相对路径,因为 /static可以直接指到文件夹static中,在h5运行时找不到次路径的文件

imgOff:"/static/img/xingcheng-.png",