@yoooloo42/joker 1.0.96 → 1.0.97

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/index.esm.js CHANGED
@@ -22629,7 +22629,11 @@ const input = reactive({
22629
22629
  placeholder: propsItem_box.placeholder || formProps_box.para.placeholder.input,
22630
22630
  showPassword: !!propsItem_box.showPassword,
22631
22631
  hdlCannotInput: event => { // 解决偶发不能输入的问题
22632
- formData_box[propsItem_box.fieldName] = event.target.value;
22632
+
22633
+ console.log('测试 000 event', event);
22634
+ console.log('测试 111 event.target', event.target);
22635
+
22636
+ formData_box[propsItem_box.fieldName] = event.value;
22633
22637
  }
22634
22638
  });
22635
22639