UNPKG

@tanstack/vue-query

Version:

Hooks for managing, caching and syncing asynchronous and remote data in Vue

10 lines 286 B
// src/useQuery.ts import { QueryObserver } from "@tanstack/query-core"; import { useBaseQuery } from "./useBaseQuery.js"; function useQuery(options, queryClient) { return useBaseQuery(QueryObserver, options, queryClient); } export { useQuery }; //# sourceMappingURL=useQuery.js.map