shared.js 304 B

12345678910111213141516171819
  1. /**
  2. * Common Switch Props
  3. */
  4. export var switchProps = {
  5. size: [Number, String],
  6. value: null,
  7. loading: Boolean,
  8. disabled: Boolean,
  9. activeColor: String,
  10. inactiveColor: String,
  11. activeValue: {
  12. type: null,
  13. default: true
  14. },
  15. inactiveValue: {
  16. type: null,
  17. default: false
  18. }
  19. };