[Vuejs]-Laravel 5.5 and vue js not working out of box

2👍

You just need to add
<script src="{{ mix('js/app.js') }}"></script> before de </body> tag.

In this way to are adding the mix that contains the Vue library, components, and so much more.

I Hope this helps.

Leave a comment