[Vuejs]-Why the vue-router do not work?

0👍

Change routers to routes

const router = new VueRouter({
 routes: [ // <<< here
    {path: '/home', component: Home},
    {path: '/helloworld', component: HelloWorld},
  ],
  mode: "history"
})

-1👍

can you try accessing using the URL

http://0.0.0.0:8081/Home.vue

http://0.0.0.0:8081/helloworld.vue

regards,

Raghu

Leave a comment