fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

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

Merge pull request #2723 from hey-api/chore/changeset-fix

chore: try h3 to fix changesets

authored by

Lubos and committed by
GitHub
071dc8bc 4f90ded6

+4 -4
+4 -4
.changeset/refactor-pinia-colada-query.md
··· 8 8 9 9 Pinia Colada query options now use `defineQueryOptions` to improve reactivity support. Instead of calling the query options function, you can use one of the following approaches. 10 10 11 - #### No params 11 + ### No params 12 12 13 13 ```ts 14 14 useQuery(getPetsQuery); 15 15 ``` 16 16 17 - #### Constant 17 + ### Constant 18 18 19 19 ```ts 20 20 useQuery(getPetByIdQuery, () => ({ ··· 24 24 })); 25 25 ``` 26 26 27 - #### Reactive 27 + ### Reactive 28 28 29 29 ```ts 30 30 const petId = ref<number | null>(1); ··· 36 36 })); 37 37 ``` 38 38 39 - #### Properties 39 + ### Properties 40 40 41 41 ```ts 42 42 const petId = ref<number | null>(1);