保誠-保戶業務員媒合平台
Tomas
2024-04-30 f247f8a4ee7edda57d01b184962b3a3ec04316a7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { ElementUIComponent } from './component'
 
/** Horizontal alignment of flex layout */
export type HorizontalAlignment = 'start' | 'end' | 'center' | 'space-around' | 'space-between'
 
/** vertical alignment of flex layout */
export type VertialAlignment = 'top' | 'middle' | 'bottom'
 
/** Row Layout Component */
export declare class ElRow extends ElementUIComponent {
  /** Grid spacing */
  gutter: number
 
  /** Layout mode. You can use flex. Works in modern browsers */
  type: string
 
  /** Horizontal alignment of flex layout */
  justify: HorizontalAlignment
 
  /** Vertical alignment of flex layout */
  align: VertialAlignment
 
  /** Custom element tag */
  tag: string
}