[Vuejs]-[Vue warn]: Error in created hook: "TypeError: __WEBPACK_IMPORTED_MODULE_0__firebase_init__.a.firestore is not a function"

0👍

Okay, so I solved the problem.
The solution was to change

db.firestore().collection('users')

to:

db.collection('users')

Leave a comment