zhengyiming
3 天以前 503dcbe9d248d7a6b759c1725d155b07de31d83a
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,
    },
  },
});