UNPKG

@form-create/iview

Version:

Iview版本低代码表单|FormCreate 是一个可以通过 JSON 生成具有动态渲染、数据收集、验证和提交功能的低代码表单生成组件。支持6个UI框架,适配移动端,并且支持生成任何 Vue 组件。内置20种常用表单组件和自定义组件,再复杂的表单都可以轻松搞定。

49 lines (46 loc) 1.12 kB
export const iviewConfig = { resetBtnType: 'default', resetBtnIcon: 'md-refresh', infoIcon: 'ios-information-circle-outline', }; export function info() { return { type: 'poptip', trigger: 'hover', placement: 'top-start', wordWrap: true, icon: iviewConfig.infoIcon } } export default function getConfig() { return { form: { inline: false, labelPosition: 'right', labelWidth: 125, showMessage: true, autocomplete: 'off', size: undefined, }, row: { gutter: 0, }, submitBtn: { type: 'primary', disabled: false, innerText: '提交', loading: false, show: true, click: undefined, }, resetBtn: { type: iviewConfig.resetBtnType, disabled: false, icon: iviewConfig.resetBtnIcon, innerText: '重置', loading: false, show: false, click: undefined, }, }; }