12345678910111213141516171819202122232425262728293031 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- span: {
- type: [String, Number],
- default: () => defProps.col.span
- },
-
- offset: {
- type: [String, Number],
- default: () => defProps.col.offset
- },
-
- justify: {
- type: String,
- default: () => defProps.col.justify
- },
-
- align: {
- type: String,
- default: () => defProps.col.align
- },
-
- textAlign: {
- type: String,
- default: () => defProps.col.textAlign
- }
- }
- })
|