From ba0fae74a741dbcaafafdf3e4b8592672a94593a Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Fri, 22 Jan 2021 12:25:13 +0100 Subject: [PATCH] fix: remove NuxtChild refs (#113) --- packages/nuxt3/src/app/plugins/router/index.ts | 2 -- 1 file changed, 2 deletions(-) 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