From 79ec3fd031e28d15854e2f0d4fb978df337e43d5 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Thu, 18 Jan 2024 17:34:41 +0100 Subject: [PATCH] fix(link): import type from `#vue-router` Resolves #1253 --- src/runtime/utils/link.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/utils/link.ts b/src/runtime/utils/link.ts index 63835fbc..a43981b5 100644 --- a/src/runtime/utils/link.ts +++ b/src/runtime/utils/link.ts @@ -1,5 +1,5 @@ import type { PropType } from 'vue' -import type { RouteLocationRaw } from 'vue-router' +import type { RouteLocationRaw } from '#vue-router' export const nuxtLinkProps = { to: {