[Vue]エラー:抽出コンポーネントGuardsの無効なルーティングコンポーネントエラーの解決


vue-routerの設定中に次のエラーが発生しました.
vue-router.esm-bundler.js?6c02:3302 Error: Invalid route component
    at extractComponentsGuards (vue-router.esm-bundler.js?6c02:1987:1)
    at eval (vue-router.esm-bundler.js?6c02:3143:1)
Named Viewsを使用しない場合は、componentscomponentに変更します.
const router = createRouter({
  history: createWebHistory(),
  routes: [
    {
      path: '/',
      name: 'Home',
      components: Home, // FIXME (component로 변경)
    },
  ],
});