zhengyiming
4 天以前 b823ca3d9f2e6dd6cdc2d388576d02c73d5f9896
1
2
3
4
5
6
7
8
9
10
import { QueryClient } from '@tanstack/vue-query';
 
export const myClient = new QueryClient({
  defaultOptions: {
    queries: {
      refetchOnWindowFocus: false,
      retry: false,
    },
  },
});