Using Tanstack vue query in quasar framework +feathers pagination #3078
haniyasin
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
used feathers Dove 5.0 , Quasar Framework, Tanstack Query (vue)
1- made a boot file in quasar to initialize vue query plugin:
import { boot } from 'quasar/wrappers'
import { VueQueryPlugin } from "@tanstack/vue-query";
export default boot(({ app }) => {
app.use(VueQueryPlugin)
})
2-register boot file in quasar.config
3- in vue page
need to handle when you reach last page/skip
Beta Was this translation helpful? Give feedback.
All reactions