fix(Slider): support update value prop dynamic @rex-zsd (#863)

This commit is contained in:
rex 2018-11-06 19:16:01 +08:00 committed by neverland
parent 0cff00bdcc
commit a1e8616e15

View File

@ -28,6 +28,12 @@ VantComponent({
}
},
watch: {
value(value) {
this.updateValue(value, false);
}
},
created() {
this.updateValue(this.data.value);
},