Skip to content

Commit

Permalink
fix: 修复全局schema注入失败的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
lq9958 committed Aug 29, 2023
1 parent 8ee5332 commit 177ac27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "form-render4-vue3-pro",
"author": "lq9958",
"version": "1.3.1",
"version": "1.3.2",
"description": "A form render for vue3, base on arco-design.",
"main": "src/package/form-render4-vue3-pro/index.js",
"type": "module",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
});
provide('form-render-data', formData);
provide('form-render-option-data', props.optionData || {});
provide('global-schema', schema || {});
provide('global-schema', props.schema || {});
const emit = defineEmits(['update:modelValue']);
const schema = reactive(props.schema);
Expand Down

0 comments on commit 177ac27

Please sign in to comment.