Skip to content

vue-apollo v4 and vue 3 #1216

Answered by morr
wjcarson asked this question in Q&A
Discussion options

You must be logged in to vote

@wjcarson look at the sources, it does not export any defaults https://github.com/vuejs/vue-apollo/blob/v4/packages/vue-apollo-option/src/index.js

Try to replace

import VueApollo from '@vue/apollo-option'

with

import { createApolloProvider } from '@vue/apollo-option';

and replace

const apolloProvider = new VueApollo({
  defaultClient: apolloClient
})

with

const apolloProvider = createApolloProvider({
  defaultClient: apolloClient
});

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by Akryum
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #1215 on July 06, 2021 11:27.