fix: augment vue rather than @vue/runtime-core (#1576)

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).
This commit is contained in:
ChatonDeAru (Romain)
2025-01-09 20:10:35 +01:00
committed by GitHub
parent b57f2befe3
commit 365c95467a
+1 -1
View File
@@ -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,