From 83b0af1d3aaeaff4e541f8abeee61859f8d372ff Mon Sep 17 00:00:00 2001 From: joaovitoras Date: Tue, 15 Oct 2024 07:56:56 -0300 Subject: [PATCH] fix: augment vue rather than @vue/runtime-core --- types/vue.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/vue.d.ts b/types/vue.d.ts index baef6f823..b760f3bd0 100644 --- a/types/vue.d.ts +++ b/types/vue.d.ts @@ -5,7 +5,7 @@ import { ComponentCustomOptions } from "vue"; import { Store } from "./index"; -declare module "@vue/runtime-core" { +declare module "vue" { interface ComponentCustomOptions { store?: Store; }