@lljj/vue2-form-core
Version:
基于 Vue 、JsonSchema快速构建一个带完整校验的form表单,vue2版本基础框架
17 lines (14 loc) • 325 B
JavaScript
/**
* Created by Liu.Jun on 2020/4/21 9:24.
* IntegerField 复用StringField
*/
import vueProps from '../props';
import StringField from '../StringField';
export default {
name: 'IntegerField',
props: vueProps,
functional: true,
render(h, context) {
return h(StringField, context.data);
}
};