mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-10-19 04:32:09 +08:00
15 lines
259 B
TypeScript
15 lines
259 B
TypeScript
import { createForm } from '@tmagic/form';
|
|
|
|
export default createForm([
|
|
{
|
|
name: 'activeValue',
|
|
text: '选中时的值',
|
|
defaultValue: true,
|
|
},
|
|
{
|
|
name: 'inactiveValue',
|
|
text: '没有选中时的值',
|
|
defaultValue: false,
|
|
},
|
|
]);
|