mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2026-01-02 14:38:14 +00:00
15 lines
261 B
TypeScript
15 lines
261 B
TypeScript
import { createForm } from '@tmagic/editor';
|
|
|
|
export default createForm([
|
|
{
|
|
name: 'activeValue',
|
|
text: '选中时的值',
|
|
defaultValue: true,
|
|
},
|
|
{
|
|
name: 'inactiveValue',
|
|
text: '没有选中时的值',
|
|
defaultValue: false,
|
|
},
|
|
]);
|