We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7b6d9e commit cc768c5Copy full SHA for cc768c5
src/v2/api/index.md
@@ -595,7 +595,8 @@ type: api
595
data: {
596
a: 1,
597
b: 2,
598
- c: 3
+ c: 3,
599
+ d: 4
600
},
601
watch: {
602
a: function (val, oldVal) {
@@ -607,6 +608,11 @@ type: api
607
608
c: {
609
handler: function (val, oldVal) { /* ... */ },
610
deep: true
611
+ },
612
+ // the callback will be called immediately after the start of the observation
613
+ d: {
614
+ handler: function (val, oldVal) { /* ... */ },
615
+ immediate: true
616
}
617
618
})
0 commit comments