mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 20:58:22 +08:00
13 lines
214 B
TypeScript
13 lines
214 B
TypeScript
export const datePickTypes = [
|
|
'year',
|
|
'month',
|
|
'date',
|
|
'dates',
|
|
'week',
|
|
'datetime',
|
|
'datetimerange',
|
|
'daterange',
|
|
'monthrange',
|
|
] as const
|
|
export type DatePickType = typeof datePickTypes[number]
|