uview-plus 3.3.69 → 3.3.70
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
|
@@ -100,8 +100,7 @@
|
|
|
100
100
|
values.push(child.name)
|
|
101
101
|
}
|
|
102
102
|
})
|
|
103
|
-
|
|
104
|
-
this.$emit('change', values)
|
|
103
|
+
|
|
105
104
|
// 修改通过v-model绑定的值
|
|
106
105
|
// #ifdef VUE3
|
|
107
106
|
this.$emit("update:modelValue", values);
|
|
@@ -109,6 +108,8 @@
|
|
|
109
108
|
// #ifdef VUE2
|
|
110
109
|
this.$emit("input", values);
|
|
111
110
|
// #endif
|
|
111
|
+
// 放在最后更新,否则change事件传出去的values不会更新
|
|
112
|
+
this.$emit('change', values)
|
|
112
113
|
},
|
|
113
114
|
}
|
|
114
115
|
}
|
package/package.json
CHANGED