row.js 700 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. var runtime = require('../../../utils/vue/props/runtime.js');
  4. const RowJustify = [
  5. "start",
  6. "center",
  7. "end",
  8. "space-around",
  9. "space-between",
  10. "space-evenly"
  11. ];
  12. const RowAlign = ["top", "middle", "bottom"];
  13. const rowProps = runtime.buildProps({
  14. tag: {
  15. type: String,
  16. default: "div"
  17. },
  18. gutter: {
  19. type: Number,
  20. default: 0
  21. },
  22. justify: {
  23. type: String,
  24. values: RowJustify,
  25. default: "start"
  26. },
  27. align: {
  28. type: String,
  29. values: RowAlign
  30. }
  31. });
  32. exports.RowAlign = RowAlign;
  33. exports.RowJustify = RowJustify;
  34. exports.rowProps = rowProps;
  35. //# sourceMappingURL=row.js.map