其他分享
首页 > 其他分享> > Refused to load the image ‘http://localhost/favicon.ico‘

Refused to load the image ‘http://localhost/favicon.ico‘

作者:互联网

报了这个错这后看了很多帖子都说是路径问题,我仔细检查了很多路径发现我的路径并没有问题,原来是我写的代码忘了放到div中了,原来的代码是这样的:

<template>
    <img src="./assets/logo.png" width="200px" height="300px"/>
    <HelloWorld/>
</template>

修改后为

<template>
  <div>
    <img src="./assets/logo.png" width="200px" height="300px"/>
    <HelloWorld/>
  </div>
</template>

在原来的代码中加上div就对了,当然也要注意一下图片的后缀,有的是png有的jpg哦。

标签:load,http,原来,代码,路径,div,image
来源: https://blog.csdn.net/xwh1314/article/details/117231860