From 1b7eeb3df8d34e13f486d2ac638be15d072c1572 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Fri, 5 Jul 2024 09:47:39 +0100 Subject: [PATCH 1/2] chore: add CODEOWNERS file --- CODEOWNERS | 1 + 1 file changed, 1 insertion(+) create mode 100644 CODEOWNERS diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 00000000..fc78d099 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1 @@ +* @danielroe From c5ccbfef93604cd6b4f1647fd5270e3e7832a782 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Fri, 16 Aug 2024 12:33:19 +0100 Subject: [PATCH 2/2] fix: augment `vue` rather than `@vue/runtime-core` --- src/runtime/plugin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/plugin.ts b/src/runtime/plugin.ts index b0c3a952..951055cf 100644 --- a/src/runtime/plugin.ts +++ b/src/runtime/plugin.ts @@ -13,7 +13,7 @@ declare module '#app' { interface NuxtApp extends PluginInjection {} } -declare module '@vue/runtime-core' { +declare module 'vue' { interface ComponentCustomProperties extends PluginInjection {} }