Skip to content

Commit

Permalink
feat: 修复数据引用带了的副作用
Browse files Browse the repository at this point in the history
  • Loading branch information
lhbxs committed Feb 28, 2024
1 parent 21e704c commit f8e2bbc
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docs/form-render/schema/simple.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
type: "object",
type: 'object',
properties: {
input: {
title: '输入框',
Expand All @@ -10,6 +10,13 @@ export default {
title: '下拉框',
type: 'string',
widget: 'select',
props: {
options: [
{ label: '早', value: 'a' },
{ label: '中', value: 'b' },
{ label: '晚', value: 'c' }
]
}
}
}
};

0 comments on commit f8e2bbc

Please sign in to comment.