Open
Description
Is your feature request related to a problem? Please describe.
If you go to apollo.vuejs.org/guide-composable/setup.html you will see this setup example
import { createApp, provide, h } from 'vue'
import { DefaultApolloClient } from '@vue/apollo-composable'
const app = createApp({
setup () {
provide(DefaultApolloClient, apolloClient)
},
render: () => h(App),
})
the variable "apolloClient" just don't exist, how to create it?
Describe the solution you'd like
Need clear step by step guide for install process
Describe alternatives you've considered
- Do this
- Install this
- Done
- Example how to use ApolloVue