form-tdesigner
Version:
好用的Vue低代码可视化表单设计器,可以通过拖拽的方式快速创建表单,提高开发者对表单的开发效率。
27 lines (26 loc) • 552 B
JavaScript
export default function field({t}) {
return [
{
type: 'input',
title: 'ID',
field: 'id',
wrap: {
labelWidth: '45px'
}
},
{
type: 'input',
title: 'Class',
field: 'class',
wrap: {
labelWidth: '45px'
}
},
{
type: 'StyleConfig',
field: 'style',
title: '',
value: {},
}
];
}