props.js 477 B

1234567891011121314151617181920212223242526272829
  1. const props = {
  2. align: {
  3. type: String,
  4. value: 'center',
  5. },
  6. content: {
  7. type: String,
  8. },
  9. dashed: {
  10. type: Boolean,
  11. value: false,
  12. },
  13. externalClasses: {
  14. type: Array,
  15. },
  16. layout: {
  17. type: String,
  18. value: 'horizontal',
  19. },
  20. lineColor: {
  21. type: String,
  22. value: '',
  23. },
  24. theme: {
  25. type: String,
  26. value: 'horizontal',
  27. },
  28. };
  29. export default props;