Skip to content

Commit

Permalink
fix: 修复代码生成器前端新增数据模板错误
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles7c committed Jul 18, 2024
1 parent 48aae87 commit 81de8d0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const options: Options = {
btns: { hide: true }
}
const columns: Columns = [
const columns: Columns = reactive([
<#list fieldConfigs as fieldConfig>
<#if fieldConfig.showInForm>
{
Expand Down Expand Up @@ -84,7 +84,7 @@ const columns: Columns = [
},
</#if>
</#list>
]
])
const { form, resetForm } = useForm({
// todo 待补充
Expand Down

0 comments on commit 81de8d0

Please sign in to comment.