Skip to content

Commit

Permalink
chore: build
Browse files Browse the repository at this point in the history
  • Loading branch information
fxy060608 committed May 6, 2024
1 parent 46f2122 commit d090049
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
8 changes: 5 additions & 3 deletions packages/uni-h5/dist-x/uni-h5.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -1471,9 +1471,11 @@ const index$D = /* @__PURE__ */ defineBuiltInComponent({
}) {
const rootRef = vue.ref(null);
provideForm(useCustomEvent(rootRef, emit2));
return () => vue.createVNode("uni-form", {
"ref": rootRef
}, [vue.createVNode("span", null, [slots.default && slots.default()])], 512);
{
return () => vue.createVNode("uni-form", {
"ref": rootRef
}, [slots.default && slots.default()], 512);
}
}
});
function provideForm(trigger) {
Expand Down
18 changes: 11 additions & 7 deletions packages/uni-h5/dist-x/uni-h5.es.js
Original file line number Diff line number Diff line change
Expand Up @@ -2742,13 +2742,17 @@ const index$A = /* @__PURE__ */ defineBuiltInComponent({
}) {
const rootRef = ref(null);
provideForm(useCustomEvent(rootRef, emit2));
onMounted(() => {
const rootElement = rootRef.value;
rootElement.attachVmProps(_props);
});
return () => createVNode("uni-form", {
"ref": rootRef
}, [createVNode("span", null, [slots.default && slots.default()])], 512);
{
onMounted(() => {
const rootElement = rootRef.value;
rootElement.attachVmProps(_props);
});
}
{
return () => createVNode("uni-form", {
"ref": rootRef
}, [slots.default && slots.default()], 512);
}
}
});
function provideForm(trigger) {
Expand Down

0 comments on commit d090049

Please sign in to comment.