We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdbc9cd commit baa8255Copy full SHA for baa8255
docs/composition-api.md
@@ -132,16 +132,16 @@ Notice the `tutorialsData` in the previous example. You can see that there's an
132
```ts
133
interface UseFindData {
134
items: Ref<any>
135
+ paginationData: Ref<object>
136
servicePath: Ref<string>
- isFindPending: Ref<boolean>
137
- haveBeenRequestedOnce: Ref<boolean>
138
- haveLoaded: Ref<boolean>
139
- isLocal: Ref<boolean>
140
qid: Ref<string>
+ isPending: Ref<boolean>
+ haveBeenRequested: Ref<boolean>
+ haveLoaded: Ref<boolean>
141
+ error: Ref<Error>
142
debounceTime: Ref<number>
143
latestQuery: Ref<object>
- paginationData: Ref<object>
144
- error: Ref<Error>
+ isLocal: Ref<boolean>
145
find: Function
146
}
147
```
0 commit comments