upro.ui
Version:
upro.ui,是送气宝系列的共用工具套
34 lines • 827 B
JavaScript
export default {
props: {
size: {
type: [String, Number, Array],
default: 0
},
wrap: {
type: Boolean,
default: false
},
// flex的align-items start / center / end
align: {
type: String,
default: ''
},
// flex的justify-content start / center / end / around / between
justify: {
type: String,
default: ''
},
direction: {
type: String,
default: 'horizontal' // 纵向vertical 横向horizontal
},
block: {
type: Boolean,
default: false
},
customStyle: {
type: Object,
default: undefined
}
}
}