From bc5551434fee1d20187931969aa71192cf3555ad Mon Sep 17 00:00:00 2001 From: "ChatonDeAru (Romain)" <823314+chatondearu@users.noreply.github.com> Date: Thu, 17 Oct 2024 16:36:48 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20augment=20`vue`=20rather=20than?= =?UTF-8?q?=20`@vue/runtime-core`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR removes augmentations of `@vue/runtime-core` in favour of only augmenting `vue` (the new recommendation), which should fix issues when other packages are only augmenting vue (see nuxt/nuxt#28542). --- packages/vue-apollo-option/types/vue.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vue-apollo-option/types/vue.d.ts b/packages/vue-apollo-option/types/vue.d.ts index 60eb3fc6..6405b76b 100644 --- a/packages/vue-apollo-option/types/vue.d.ts +++ b/packages/vue-apollo-option/types/vue.d.ts @@ -2,7 +2,7 @@ import { DollarApollo } from './vue-apollo' import { VueApolloComponentOptions } from './options' import { ApolloProvider } from './apollo-provider' -declare module '@vue/runtime-core' { +declare module 'vue' { interface ComponentOptionsBase< Props, RawBindings,