mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
12 lines
384 B
TypeScript
12 lines
384 B
TypeScript
import { buildProps } from '@element-plus/utils'
|
|
import { datePickerSharedProps, selectionModeWithDefault } from './shared'
|
|
|
|
import type { ExtractPropTypes } from 'vue'
|
|
|
|
export const basicMonthTableProps = buildProps({
|
|
...datePickerSharedProps,
|
|
selectionMode: selectionModeWithDefault('month'),
|
|
})
|
|
|
|
export type BasicMonthTableProps = ExtractPropTypes<typeof basicMonthTableProps>
|