@form-create/vant-designer
Version:
基于Vant的移动端低代码可视化表单设计器,可以通过拖拽的方式快速创建表单,提高开发者对表单的开发效率。
45 lines (42 loc) • 985 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: '',
native: true,
attrs: {
innerHTML: ''
},
style: {
display: 'block',
width: '100%',
},
children: ['<div style="color:blue;">\n' +
' html html html html html html html html html\n' +
' </div>'],
};
},
watch: {
formCreateNative({value, rule}) {
if (value) {
rule.title = '';
}
}
},
props(_, {t}) {
return localeProps(t, name + '.props', [
...makeTitleRule(t),
{
type: 'HtmlEditor',
field: 'formCreateChild',
}
]);
}
};