[Vuejs]-Template not showing in Laravel 5.5 and Vue.js

0👍

Solution for problem was missing
<div id="app"> </div>
and

<script src="{{ mix('js/app.js') }}"></script>

in blade file.

Leave a comment