@form-create/antd-designer
Version:
AntDesignVue版本Vue低代码可视化表单设计器,可以通过拖拽的方式快速创建表单,提高开发者对表单的开发效率。
34 lines (31 loc) • 749 B
JavaScript
import {localeProps, makeTitleRule} from '../../utils';
const label = 'HTML';
const name = 'html';
export default {
menu: 'aide',
icon: 'icon-html',
label,
name,
rule() {
return {
type: name,
title: '',
style: {
display: 'block',
width: '100%',
},
children: ['<div style="color:blue;">\n' +
' html html html html html html html html html\n' +
' </div>'],
};
},
props(_, {t}) {
return localeProps(t, name + '.props', [
...makeTitleRule(t),
{
type: 'HtmlEditor',
field: 'formCreateChild',
}
]);
}
};