props.js 460 B

123456789101112131415161718192021
  1. export var DatePickerDefaultProps = {
  2. visible: null,
  3. defaultVisible: null,
  4. animationType: 'transform',
  5. format: 'YYYY/MM/DD',
  6. min: null,
  7. max: null,
  8. value: null,
  9. defaultValue: null,
  10. title: '',
  11. okText: '确定',
  12. cancelText: '取消',
  13. placeholder: '请选择',
  14. precision: 'day',
  15. maskClosable: true,
  16. popClassName: '',
  17. popStyle: '',
  18. disabled: false,
  19. onFormatLabel: null,
  20. onFormat: null,
  21. };