综合办公系统
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

props.js 493B

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