[Vuejs]-Vue router url could not open page

3👍

As stated in the vue router docs:

The default mode for vue-router is hash mode – it uses the URL hash to simulate a full URL so that the page won’t be reloaded when the URL changes.

You should find your page at http://localhost:8080/#/home

You can read more about this here

Leave a comment