Laravel mix 看不到 vue 组件中的 img 元素

Laravel mix doesn't see img elements in vue components

Laravel Mix 将 scss 中使用的图像从 resources 文件夹移动到 public 文件夹,但不会将图像从我在我的 vuejs 组件中使用的 img 标签的 src 属性移动...

<img src="images/logo.png" >

我必须做什么?

将您的代码更改为 <img src="./images/logo.png" >

编辑

考虑到从 resouces/assets/js/components/Example.vueresources/assets/img/logo.jpg 的相对路径,图像标签应该是 。