15 lines
261 B
TypeScript

import { createForm } from '@tmagic/editor';
export default createForm([
{
name: 'activeValue',
text: '选中时的值',
defaultValue: true,
},
{
name: 'inactiveValue',
text: '没有选中时的值',
defaultValue: false,
},
]);