uview-plus 3.1.8 → 3.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/changelog.md
CHANGED
|
@@ -87,10 +87,11 @@
|
|
|
87
87
|
this.$emit('change', values)
|
|
88
88
|
// 修改通过v-model绑定的值
|
|
89
89
|
// #ifdef VUE3
|
|
90
|
-
this.$emit("update:modelValue",
|
|
90
|
+
this.$emit("update:modelValue", values);
|
|
91
91
|
// #endif
|
|
92
92
|
// #ifdef VUE2
|
|
93
|
-
this.$emit("input",
|
|
93
|
+
this.$emit("input", values);
|
|
94
|
+
// #endif
|
|
94
95
|
},
|
|
95
96
|
}
|
|
96
97
|
}
|