Skip to content

Commit 13c087f

Browse files
committed
add docs for count & unify renderless components
1 parent c5fc60d commit 13c087f

File tree

4 files changed

+151
-84
lines changed

4 files changed

+151
-84
lines changed

docs/3.0-major-release.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,18 @@ This behavior exactly matches the new `useFind` utility.
8484

8585
## Deprecations
8686

87-
### The `keepCopiesInStore` Option<Badge text="deprecated" type="warning"/>
87+
### The `keepCopiesInStore` Option <Badge text="deprecated" type="warning"/>
8888

8989
The `keepCopiesInStore` option is now deprecated. This was a part of the "clone and commit" API which basically disabled the reason for creating the "clone and commit" API in the first place.
9090

9191
If you're not familiar with the Feathers-Vuex "clone and commit" API, you can learn more about the [built-in data modeling](./model-classes.md) API and the section about [Working with Forms](./feathers-vuex-forms.md#the-clone-and-commit-pattern).
9292

9393
The `keepCopiesInStore` feature is set to be removed in Feathers-Vuex 4.0.
9494

95-
### Auth Plugin State: `user`<Badge text="deprecated" type="warning"/>
95+
### Auth Plugin State: `user` <Badge text="deprecated" type="warning"/>
9696

9797
As described, earlier on this page, since the Auth Plugin's `user` state is no longer reactive and has been replaced by a `user` getter that IS reactive, the `user` state will be removed in the Feathers-Vuex 4.0.
98+
99+
### Renderless Data Components: `query`, `fetchQuery` and `temps` <Badge text="deprecated type="warning">
100+
101+
To keep consistency with mixins and the composition API it's preferred to use `params` and `fetchParams` instead of the old `query` and `fetchQuery` for renderless data components. Also the `:temps="true"` is deprecated in favour of `:params="{ query: {}, temps: true }"`. This way additional params can be passed to the server if you need some more magic like `$populateParams`.

0 commit comments

Comments
 (0)