Skip to content

Commit

Permalink
Update WidgetFormGroup.vue
Browse files Browse the repository at this point in the history
fix: 修复group下自定义组件params缺失的bug
  • Loading branch information
vw331 authored Feb 20, 2023
1 parent 6913c52 commit 205228a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/WidgetFormGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
:class="{ active: selectWidget.prop == item.prop, 'required': item.required }"
@click.native.stop="handleWidgetTableSelect(item)">
<widget-form-item :item="item"
:params="column.params"></widget-form-item>
:params="item.params"></widget-form-item>
<el-button title="删除"
@click.stop="handleWidgetTableDelete(column, groupIndex)"
class="widget-form-group__item--delete"
Expand Down Expand Up @@ -191,4 +191,4 @@ export default {
}
}
}
</script>
</script>

0 comments on commit 205228a

Please sign in to comment.