Skip to content

Commit 071dc8b

Browse files
authored
Merge pull request #2723 from hey-api/chore/changeset-fix
chore: try h3 to fix changesets
2 parents 4f90ded + e193a04 commit 071dc8b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.changeset/refactor-pinia-colada-query.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ feat(pinia-colada): query options use `defineQueryOptions`
88

99
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.
1010

11-
#### No params
11+
### No params
1212

1313
```ts
1414
useQuery(getPetsQuery);
1515
```
1616

17-
#### Constant
17+
### Constant
1818

1919
```ts
2020
useQuery(getPetByIdQuery, () => ({
@@ -24,7 +24,7 @@ useQuery(getPetByIdQuery, () => ({
2424
}));
2525
```
2626

27-
#### Reactive
27+
### Reactive
2828

2929
```ts
3030
const petId = ref<number | null>(1);
@@ -36,7 +36,7 @@ useQuery(getPetByIdQuery, () => ({
3636
}));
3737
```
3838

39-
#### Properties
39+
### Properties
4040

4141
```ts
4242
const petId = ref<number | null>(1);

0 commit comments

Comments
 (0)