UNPKG

graphql-friendly

Version:

An easy and friendly graphql client, alternative to apollo-client

9 lines (8 loc) 271 B
import client from './client'; export default { install: (app, options) => { app.config.globalProperties.$graphqlClient = new client(options.url, options.headers); app.provide('$graphqlClient', options); }, }; export const GraphqlClient = client;