GitHub - storipress/apollo-vue-devtools: Integrate GraphQL Apollo with Vue Devtools! (original) (raw)
import { createApp } from 'vue' import Plugin from '@storipress/apollo-vue-devtool' import App from './App.vue'
const app = createApp(App) app.use(Plugin) app.mount('#app')
import { DebugLink } from '@storipress/apollo-vue-devtool' import { ApolloClient, ApolloLink, HttpLink } from '@apollo/client/client'
const client = new ApolloClient({ link: ApolloLink.from([ new DebugLink(), new HttpLink({ uri: 'http://example.com/graphql', }), ]), })