[Vuejs]-Having a hard time with async vue router to vue fire

0👍

Do you need to manually $bindAsArray? Have you tried this on your component options?

firebase() {
    debugger // make sure $this.$firebaseRefs.busers... is what you expect
    return {
        buser: this.$firebaseRefs.busers.orderByChild('uid').equalTo(this.uid)
    }
}

Also are you using Vue DevTools? That should help you inspect your bindings.

Leave a comment