props.js 507 B

123456789101112131415161718192021222324252627282930313233
  1. const props = {
  2. color: {
  3. type: null,
  4. value: '',
  5. },
  6. label: {
  7. type: null,
  8. value: true,
  9. },
  10. percentage: {
  11. type: Number,
  12. value: 0,
  13. },
  14. status: {
  15. type: String,
  16. },
  17. strokeWidth: {
  18. type: null,
  19. },
  20. style: {
  21. type: String,
  22. value: '',
  23. },
  24. theme: {
  25. type: String,
  26. value: 'line',
  27. },
  28. trackColor: {
  29. type: String,
  30. value: '',
  31. },
  32. };
  33. export default props;