[Vuejs]-Vue.js app throws error "Cannot find element: #app"

2👍

I think you are missing a #app element in the index.html to mount the app:

<body>
    <div id="app"></div>
    <script src="/dist/build.js"></script>
</body>

Leave a comment