@ebiz/designer-components 0.0.18-beta.34 → 0.0.18-beta.37
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/dist/designer-components.css +1 -1
- package/dist/index.mjs +22640 -21676
- package/package.json +1 -1
- package/src/components/EbizTimePicker.vue +2 -2
package/package.json
CHANGED
@@ -130,9 +130,9 @@ const emit = defineEmits([
|
|
130
130
|
]);
|
131
131
|
|
132
132
|
// 处理值变更事件
|
133
|
-
const handleChange = (value
|
133
|
+
const handleChange = (value) => {
|
134
134
|
emit('update:modelValue', value);
|
135
|
-
emit('change', value
|
135
|
+
emit('change', value);
|
136
136
|
};
|
137
137
|
|
138
138
|
</script>
|