Vue项目启动报错整理3

1、vue模板中的图片没有显示

Failed to load resource: the server responded with a status of 404 (Not Found)!!!

解决办法:

<img class="head-logo" :src="imgUrl">
data () {
  return {
    imgUrl: '../../static/logo.png'
  }
}

猜你喜欢

转载自blog.csdn.net/liuxin_1991/article/details/78980111