0👍
OMHeck! 😳 I found the answer thanks to Sy3d
How to mount quasar app to dom after firebase connection is initialized?
src/boot/auth.js
import { auth } from 'src/boot/firebase'
export default async ({ app, router, store }) => {
return new Promise(resolve => {
const unsubscribe = authService.onAuthStateChanged(() => {
resolve()
unsubscribe()
})
})
}
- [Vuejs]-Multiple API calls to initialize JSON and use that JSON throughout the system
- [Vuejs]-Vue.js how to check if inputs from child components are filled so parent component can able/disable a button
Source:stackexchange.com