[Vuejs]-Items empty after doing db bind

0👍

Did you add the plugin? (firestorePlugin in case of firestore)

import { rtdbPlugin } from 'vuefire';

Vue.use(rtdbPlugin);

Also, is drivers a collection? It should be db.collection('drivers') then.

Leave a comment