configure.js 519 B

12345678910111213141516171819202122232425
  1. import { basicInputConfigureOptions } from '../../input-configure-options'
  2. export default {
  3. ...basicInputConfigureOptions(),
  4. placeholder: {},
  5. multiple: {
  6. type: 'switch',
  7. label: '是否多选'
  8. },
  9. filterable: {
  10. type: 'switch',
  11. label: '是否可搜索'
  12. },
  13. allowCreate: {
  14. type: 'switch',
  15. label: '是否可创建'
  16. },
  17. defaultValue: {
  18. type: 'staticOptionsConfig',
  19. label: '静态数据',
  20. otherKey: 'options',
  21. limit: 20
  22. },
  23. required: {},
  24. requiredErrorMessage: {}
  25. }