From 50ea33017e7dce0406ee78d878c624d0aee4a7cf Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Fri, 16 Aug 2024 12:40:40 +0100 Subject: [PATCH] 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 61f1c04..0f5ced0 100644 --- a/src/runtime/plugin.ts +++ b/src/runtime/plugin.ts @@ -85,7 +85,7 @@ declare module '#app' { $appwrite: Appwrite } } -declare module '@vue/runtime-core' { +declare module 'vue' { interface ComponentCustomProperties { $appwrite: Appwrite }