add '#' before vue-router routes code example
Example 1: navbar route with params vue
//if we have a route that admits params via url:
{path : '/page/:id?', name='page', component: Page},
//we can edit the url to show the params we want like this:
<router-link :to="{name: 'page', params:{id: 'hello'}}"> </router-link>
Example 2: vue js get routes
this.$router.options.routes