configure.js 411 B

1234567891011121314151617181920212223
  1. import { basicInputConfigureOptions } from '../../input-configure-options'
  2. export default {
  3. ...basicInputConfigureOptions(),
  4. showInput: {
  5. label: '显示输入框',
  6. type: 'switch'
  7. },
  8. min: {
  9. label: '最小值',
  10. type: 'number'
  11. },
  12. max: {
  13. label: '最大值',
  14. type: 'number'
  15. },
  16. step: {
  17. label: '步长',
  18. type: 'number'
  19. },
  20. required: {},
  21. requiredErrorMessage: {}
  22. }