UNPKG

@form-create/antd-designer

Version:

AntDesignVue版本Vue低代码可视化表单设计器,可以通过拖拽的方式快速创建表单,提高开发者对表单的开发效率。

34 lines (31 loc) 705 B
import {localeProps, makeTitleRule} from '../../utils'; const label = '文字'; const name = 'text'; export default { menu: 'aide', icon: 'icon-span', label, name, rule({t}) { return { type: 'div', title: '', style: { whiteSpace: 'pre-line', }, children: [t('com.text.name')], }; }, props(_, {t}) { return localeProps(t, name + '.props', [ ...makeTitleRule(t), { type: 'input', field: 'formCreateChild', props: { type: 'textarea' } } ]); } };