Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(docs): urql vue plugin exchanges (#3151)

Co-authored-by: Phil Pluckthun <phil@kitten.sh>

authored by

Jovi De Croock
Phil Pluckthun
and committed by
GitHub
17c09ff3 2a897772

+2 -1
+2 -1
docs/basics/vue.md
··· 97 97 ```js 98 98 import { createApp } from 'vue'; 99 99 import Root from './App.vue'; 100 - import urql from '@urql/vue'; 100 + import urql, { cacheExchange, fetchExchange } from '@urql/vue'; 101 101 102 102 const app = createApp(Root); 103 103 104 104 app.use(urql, { 105 105 url: 'http://localhost:3000/graphql', 106 + exchanges: [cacheExchange, fetchExchange] 106 107 }); 107 108 108 109 app.mount('#app');