1234567891011121314151617181920212223242526272829 |
- export default {
- props: {
-
- span: {
- type: [String, Number],
- default: uni.$u.props.col.span
- },
-
- offset: {
- type: [String, Number],
- default: uni.$u.props.col.offset
- },
-
- justify: {
- type: String,
- default: uni.$u.props.col.justify
- },
-
- align: {
- type: String,
- default: uni.$u.props.col.align
- },
-
- textAlign: {
- type: String,
- default: uni.$u.props.col.textAlign
- }
- }
- }
|