We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 266b7f7 commit bba2b7cCopy full SHA for bba2b7c
src/v2/api/index.md
@@ -674,14 +674,14 @@ type: api
674
},
675
// string method name
676
b: 'someMethod',
677
- // deep watcher
+ // the callback will be called whenever any of the watched object properties change regardless of their nested depth
678
c: {
679
handler: function (val, oldVal) { /* ... */ },
680
deep: true
681
682
// the callback will be called immediately after the start of the observation
683
d: {
684
- handler: function (val, oldVal) { /* ... */ },
+ handler: 'someMethod',
685
immediate: true
686
687
e: [
0 commit comments