javascript - Output a image in Vue.js

Solution:

I suggest you to check article value with Vue extension for Firefox or Chrome, and also inspect img tag, in order to understand what is happening.

Answer

Solution:

So it seemed to be an issue with storage and laravel

I updated the controller to store the image in the public folder direct

$image->move(public_path('/img/blog_images'), $image->getFilename().'.'.$extension,);

Then hit that in the view

<img :src="'/img/blog_images/' + article.image_path"
     class="card-img-top"
     :alt="article.title"
/>

All works great!

Source