From 548bea800b8ce4ef66e139550861873fac32d60a Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Fri, 16 Aug 2024 12:32:55 +0100 Subject: [PATCH] fix: augment `vue` rather than `@vue/runtime-core` --- src/runtime/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/types.ts b/src/runtime/types.ts index b899c230..59dba6f7 100644 --- a/src/runtime/types.ts +++ b/src/runtime/types.ts @@ -40,6 +40,6 @@ interface PluginInjection { $colorMode: ColorModeInstance } -declare module '@vue/runtime-core' { +declare module 'vue' { interface ComponentCustomProperties extends PluginInjection { } }