props.js 635 B

12345678910111213141516171819
  1. export default {
  2. props: {
  3. // 给col添加间距,左右边距各占一半
  4. gutter: {
  5. type: [String, Number],
  6. default: uni.$u.props.row.gutter
  7. },
  8. // 水平排列方式,可选值为`start`(或`flex-start`)、`end`(或`flex-end`)、`center`、`around`(或`space-around`)、`between`(或`space-between`)
  9. justify: {
  10. type: String,
  11. default: uni.$u.props.row.justify
  12. },
  13. // 垂直对齐方式,可选值为top、center、bottom
  14. align: {
  15. type: String,
  16. default: uni.$u.props.row.align
  17. }
  18. }
  19. }