[Vuejs]-Invalid route component in new VueJs Project

1👍

Have a look at the component value, it’s a string, it should be a reference to your Home import:

import Home from '../views/Home.vue' 
const routes = [
  {
    path: "/",
    name: "home",
    component: Home, // <---- use Home, not "Home"
  },
];

Give it a go.

👤Greg

Leave a comment