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