[Vuejs]-How to keep waiting Vue until getting data from firebase?

0👍

You gotta look for lifecycle hooks in vue.js and use the one hook that triggers before/when the page is (re)loaded.. In it you set a Promise with your firebase function, that triggers getData() when resolved and go through with the chosen lifecycle hook.

Leave a comment