0👍
You can try with a deep watcher:
watch:
{
a:
{
handler(newValue, oldValue)
{
// find out what was actually changed
},
deep: true
},
e:
{
handler(newValue, oldValue)
{
// find out what was actually changed
},
deep: true
},
}
- [Vuejs]-How to force vue to wait for async <script> to run before mounting components
- [Vuejs]-Cannot read data from Firestore – Vue.js
Source:stackexchange.com