0👍
You could try the following as a workaround after firestore():{}
watch: {
cashTransactions(): {
deep: true,
handler(newArray) {
console.log( 'Change detected...' );
}
},
}
Hope this helps.
Source:stackexchange.com