[Vuejs]-Very weird reactivity issue with firebase (firestore) and vuejs + vuefire

0👍

You could try the following as a workaround after firestore():{}

watch: {
    cashTransactions(): {
        deep: true,
        handler(newArray) {
            console.log( 'Change detected...' );
        } 
    },
}

Hope this helps.

Leave a comment