[Vuejs]-[Vue warn]: Cannot find element: #app while logging in user in firebase/firestore

0👍

My guess is that you are calling signIn() method before the app is created. And thats the reason of the warning.

Try calling the method inside created(), I think the warining will disapear.

Leave a comment