1/** 2 * Created by Liu.Jun on 2020/4/21 9:24. 3 * NumberField 复用StringField 4 */ 5 6import { h } from 'vue'; 7import vueProps from '../props'; 8import StringField from '../StringField'; 9 10export default { 11 name: 'NumberField', 12 props: vueProps, 13 setup(props, { attrs }) { 14 return () => h(StringField, { 15 ...props, 16 ...attrs 17 }); 18 } 19}; 20