2π
β
I figured it out! The new index.html isnβt in the root anymore. In VueCli 3 this is in the /public
folder!
So I had to move /index.html to /public/index.html.
π€Tom Franssen
0π
I think you need to create a place in the DOM for the rendering to happen. In this case the application is looking for an element with the id of βappβ.
<body>
<div id="app"></div>
<script type="text/javascript" src="/app.js"></script>
</body>
π€Rob Brander
Source:stackexchange.com