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