-
Is there any information about two-way data binding between the APP and firebase? I could find some information about vuefire but not about nuxt-firebase: https://vuefire.vuejs.org/vuefire/binding-subscriptions.html#programmatic-binding it would be great to know if there is a way to start or any articles that covered the topic. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@a0m0rajab
Vuefire should work in a similar fashion. Hope that helps, |
Beta Was this translation helpful? Give feedback.
@a0m0rajab
It's a bit outdated, but this example I once wrote shows the use of vuexfire in comination with nuxt/firebase:
https://firebase.nuxtjs.org/tutorials/vuexfire
How you would set up the store:
https://github.com/lupas/nuxt-fire-vuexfire-example/blob/master/store/index.js
How you would bind it on client- & server-side.
https://github.com/lupas/nuxt-fire-vuexfire-example/blob/master/pages/ssr-vuexfire/index.vue
Vuefire should work in a similar fashion. Hope that helps,