props.js 475 B

123456789101112131415161718192021222324252627282930
  1. const props = {
  2. content: {
  3. type: String,
  4. },
  5. navigatorProps: {
  6. type: Object,
  7. },
  8. prefixIcon: {
  9. type: null,
  10. },
  11. size: {
  12. type: String,
  13. value: 'medium',
  14. },
  15. status: {
  16. type: String,
  17. value: 'normal',
  18. },
  19. suffixIcon: {
  20. type: null,
  21. },
  22. theme: {
  23. type: String,
  24. value: 'default',
  25. },
  26. underline: {
  27. type: Boolean,
  28. },
  29. };
  30. export default props;