props.js 402 B

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