标签: laravel vue.js
我试图在vue组件中显示图像
<img :src="profile.photoes[0].picture"/>
(像这样),但我没有得到它。
然而,如果我这样做
<img :src="'../../'+profile.photoes[0].picture"/> ( I m able to get the image.
为什么同一行代码有两种行为。 Laravel视图中的文件夹是否有任何区别?