UNPKG

@form-create/vant-designer

Version:

基于Vant的移动端低代码可视化表单设计器,可以通过拖拽的方式快速创建表单,提高开发者对表单的开发效率。

37 lines (34 loc) 724 B
import {localeProps} from '../../utils'; const label = '选项卡'; const name = 'vanTab'; export default { label, name, inside: true, drag: true, dragBtn: false, mask: false, rule({t}) { return { type: name, props: { title: t('com.vanTab.name') }, children: [] }; }, props(_, {t}) { return localeProps(t, name + '.props', [ { type: 'switch', field: 'disabled' }, { type: 'input', field: 'title', }, { type: 'input', field: 'name' } ]); } };