From cc29f89289f8630be316f84ccba713ec6789ec8f Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Tue, 20 Aug 2024 13:14:59 +0100 Subject: [PATCH] fix: augment `vue` rather than `@vue/runtime-core` --- src/types.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.d.ts b/src/types.d.ts index aa63f3de..fffd477b 100644 --- a/src/types.d.ts +++ b/src/types.d.ts @@ -3,7 +3,7 @@ import { Store } from 'vuex' import { RootState } from '@/store/index' import { LanguageKey } from './interface' -declare module '@vue/runtime-core' { +declare module 'vue' { interface ComponentCustomProperties { $store: Store }