Skip to content

Commit baa8255

Browse files
committed
docs Fix property names in useFind returned object
1 parent cdbc9cd commit baa8255

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/composition-api.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -132,16 +132,16 @@ Notice the `tutorialsData` in the previous example. You can see that there's an
132132
```ts
133133
interface UseFindData {
134134
items: Ref<any>
135+
paginationData: Ref<object>
135136
servicePath: Ref<string>
136-
isFindPending: Ref<boolean>
137-
haveBeenRequestedOnce: Ref<boolean>
138-
haveLoaded: Ref<boolean>
139-
isLocal: Ref<boolean>
140137
qid: Ref<string>
138+
isPending: Ref<boolean>
139+
haveBeenRequested: Ref<boolean>
140+
haveLoaded: Ref<boolean>
141+
error: Ref<Error>
141142
debounceTime: Ref<number>
142143
latestQuery: Ref<object>
143-
paginationData: Ref<object>
144-
error: Ref<Error>
144+
isLocal: Ref<boolean>
145145
find: Function
146146
}
147147
```

0 commit comments

Comments
 (0)