如何配置Vue Apollo Composable

问题描述

我正在为graphql客户使用 vue add apollo 这是我的main.js配置文件。但是在此我不知道 apolloClient 的来源,我尝试从 vue-appolo.js 导入 apolloClient ,但是它不起作用,帮助如何配置此内容感谢您的帮助

    import VueCompositionApi,{ provide } from "@vue/composition-api";
    import { DefaultApolloClient } from "@vue/apollo-composable"; 
    import { createProvider } from './vue-apollo'

    Vue.use(VueCompositionApi)
    new Vue({
      router,store,setup () {
        provide(DefaultApolloClient,apolloClient )
      },apolloProvider: createProvider(),i18n,render: h => h(App)
    }).$mount('#app')

和我的vue-apollo.js,但我不知道将 apolloClient 导入到 main.js


    import Vue from 'vue'
    import VueApollo from 'vue-apollo'
    import { createApolloClient,restartWebsockets } from 'vue-cli-plugin-apollo/graphql-client'
    
    Vue.use(VueApollo)
    
    const AUTH_TOKEN = 'apollo-token'
    const httpEndpoint = process.env.VUE_APP_GRAPHQL_HTTP || 'http://localhost:3000/graphql'
    export const filesRoot = process.env.VUE_APP_FILES_ROOT || httpEndpoint.substr(0,httpEndpoint.indexOf('/graphql'))
    
    Vue.prototype.$filesRoot = filesRoot
    
    const defaultOptions = {
      httpEndpoint,wsEndpoint: null,tokenName: AUTH_TOKEN,persisting: false,websocketsOnly: false,ssr: false
    }
    
    export function createProvider (options = {}) {
      const { apolloClient,wsClient } = createApolloClient({
        ...defaultOptions,...options
      })
      apolloClient.wsClient = wsClient
    
      const apolloProvider = new VueApollo({
        defaultClient: apolloClient,defaultOptions: {
          $query: {
          }
        },errorHandler (error) {
          console.log('%cError','background: red; color: white; padding: 2px 4px; border-radius: 3px; font-weight: bold;',error.message)
        }
      })
    
      return apolloProvider
    }
    
    export async function onLogin (apolloClient,token) {
      if (typeof localStorage !== 'undefined' && token) {
        localStorage.setItem(AUTH_TOKEN,token)
        localStorage.setItem('tokenDate',new Date())
      }
      if (apolloClient.wsClient) restartWebsockets(apolloClient.wsClient)
      try {
        await apolloClient.resetStore()
      } catch (e) {
        console.log('%cError on cache reset (login)','color: orange;',e.message)
      }
    }
    
    export async function onLogout (apolloClient) {
      if (typeof localStorage !== 'undefined') {
        localStorage.removeItem(AUTH_TOKEN)
      }
      if (apolloClient.wsClient) restartWebsockets(apolloClient.wsClient)
      try {
        await apolloClient.resetStore()
      } catch (e) {
        console.log('%cError on cache reset (logout)',e.message)
      }
    }

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...