[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を使用しない場合は、components
をcomponent
に変更します.const router = createRouter({
history: createWebHistory(),
routes: [
{
path: '/',
name: 'Home',
components: Home, // FIXME (component로 변경)
},
],
});
Reference
この問題について([Vue]エラー:抽出コンポーネントGuardsの無効なルーティングコンポーネントエラーの解決), 我々は、より多くの情報をここで見つけました https://velog.io/@okyungjin/Vue-Error-Invalid-route-component-at-extractComponentsGuards-오류-해결テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol