vue-query-nuxt icon indicating copy to clipboard operation
vue-query-nuxt copied to clipboard

A lightweight, 0 config Nuxt Module for Vue Query.

Results 36 vue-query-nuxt issues
Sort by recently updated
recently updated
newest added
trafficstars

### 🔗 Linked issue ### ❓ Type of change - [ ] 📖 Documentation (updates to the documentation, readme or JSdoc annotations) - [x] 🐞 Bug fix (a non-breaking change...

### Environment "@hebilicious/vue-query-nuxt": "^0.3.0" ### Reproduction https://codesandbox.io/p/devbox/4pq98t ### Describe the bug I'm trying to setup `retry` globally through `nuxt.config.ts`, but it doesn't work. I made a simple example in a...

This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`20.12.7` -> `22.15.3`](https://renovatebot.com/diffs/npm/@types%2fnode/20.12.7/22.15.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/22.15.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |...

https://github.com/Hebilicious/vue-query-nuxt/blob/3def2729d227226e5dad57d52d60ed2e6e59d568/packages/vue-query-nuxt/src/runtime/utils.ts#L7 This seems to support auto importing less than all available composables, but the type does not. This should fix it: ``` export type VueQueryComposables = | 'useQuery' | 'useQueries'...

This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [esbuild](https://redirect.github.com/evanw/esbuild) | [`^0.20.2` -> `^0.25.0`](https://renovatebot.com/diffs/npm/esbuild/0.20.2/0.25.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/esbuild/0.25.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/esbuild/0.20.2/0.25.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | ### GitHub Vulnerability...

This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [pnpm](https://pnpm.io) ([source](https://redirect.github.com/pnpm/pnpm/tree/HEAD/pnpm)) | [`8.15.7` -> `10.0.0`](https://renovatebot.com/diffs/npm/pnpm/8.15.7/10.0.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/pnpm/10.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/pnpm/8.15.7/10.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | ### GitHub...

I was searching for `onServerPrefetch` on https://nuxt.com/modules/vue-query, but couldn't find it. It is present in the README, it was added 4 months ago, but I see there hasn't been a...

Currently, when changing page, the page change is instant and we use `isLoading` to show a placeholder. I would like to change this and use the default ``, but I'm...

question

### 🔗 Linked issue #77 ### ❓ Type of change - [ ] 📖 Documentation (updates to the documentation, readme or JSdoc annotations) - [x] 🐞 Bug fix (a non-breaking...

### Environment Package: `@hebilicious/vue-query-nuxt 0.3.0` Node: `v22.12.0` ### Reproduction ```vue const { suspense, data, error, isPending } = useQuery({ queryKey: ["something"], queryFn: () => useRequestFetch()("/respond-with-4xx") }); if (import.meta.env.SSR) { await...