Files
element-plus/packages/components/row/src/row.ts
Xc 4d021bde98 docs(components): [layout] (#10682)
* docs(components): [layout]
* Adjust API style

* docs(components): [layout]
2022-11-21 21:57:21 +08:00

51 lines
957 B
TypeScript

import { buildProps } from '@element-plus/utils'
import type { ExtractPropTypes } from 'vue'
import type Row from './row.vue'
export const RowJustify = [
'start',
'center',
'end',
'space-around',
'space-between',
'space-evenly',
] as const
export const RowAlign = ['top', 'middle', 'bottom'] as const
export const rowProps = buildProps({
/**
* @description custom element tag
*/
tag: {
type: String,
default: 'div',
},
/**
* @description grid spacing
*/
gutter: {
type: Number,
default: 0,
},
/**
* @description horizontal alignment of flex layout
*/
justify: {
type: String,
values: RowJustify,
default: 'start',
},
/**
* @description vertical alignment of flex layout
*/
align: {
type: String,
values: RowAlign,
default: 'top',
},
} as const)
export type RowProps = ExtractPropTypes<typeof rowProps>
export type RowInstance = InstanceType<typeof Row>