@yoooloo42/joker 1.0.188 → 1.0.190
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 +2 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +2 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -23265,6 +23265,7 @@ const props = __props;
|
|
|
23265
23265
|
|
|
23266
23266
|
// props属性包装,使得页面和js使用相同的命名
|
|
23267
23267
|
let formData_box = props.modelValue;
|
|
23268
|
+
const formProps_box = props.myProps;
|
|
23268
23269
|
const scopeThis_box = props.scopeThis;
|
|
23269
23270
|
const propsItem_box = props.item;
|
|
23270
23271
|
|
|
@@ -23275,7 +23276,7 @@ const style = vue.ref({
|
|
|
23275
23276
|
|
|
23276
23277
|
const hdlClick = () => {
|
|
23277
23278
|
if(propsItem_box.hdlLabelClick){
|
|
23278
|
-
propsItem_box.hdlLabelClick({formData: formData_box, scopeThis: scopeThis_box});
|
|
23279
|
+
propsItem_box.hdlLabelClick({formData: formData_box, formProps: formProps_box, scopeThis: scopeThis_box});
|
|
23279
23280
|
}
|
|
23280
23281
|
};
|
|
23281
23282
|
|