diff --git a/packages/nuxt3/src/app/plugins/router/index.ts b/packages/nuxt3/src/app/plugins/router/index.ts index 11a6881ea3..0815b3c2ca 100644 --- a/packages/nuxt3/src/app/plugins/router/index.ts +++ b/packages/nuxt3/src/app/plugins/router/index.ts @@ -7,7 +7,6 @@ import { } from 'vue-router' import type { Plugin } from 'nuxt/app' import NuxtPage from './NuxtPage.vue' -import NuxtChild from './NuxtChild.vue' import routes from '~build/routes' @@ -20,7 +19,6 @@ export default function router (nuxt) { } app.component('NuxtPage', NuxtPage) - app.component('NuxtChild', NuxtChild) app.component('NuxtLink', RouterLink) const routerHistory = process.client