UNPKG

form-tdesigner

Version:

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

50 lines (47 loc) 1.22 kB
import {localeProps} from '../../utils'; const label = '文字'; const name = 'text'; export default { menu: 'aide', icon: 'icon-span', label, name, rule({t}) { return { type: 'div', title: '', native: true, style: { whiteSpace: 'pre-line', }, children: [t('com.text.name')], }; }, watch: { formCreateNative({value, rule}) { if (value) { rule.title = ''; } } }, props(_, {t}) { return localeProps(t, name + '.props', [ { type: 'switch', field: 'formCreateNative', props: { activeValue: false, inactiveValue: true, }, control: [{value: false, rule: ['formCreateTitle']}] }, { type: 'input', field: 'formCreateTitle', }, { type: 'input', field: 'formCreateChild', props: { type: 'textarea' } } ]); } };