mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
docs(components): [date-picker] fix panel-change param type error (#15009)
This commit is contained in:
parent
5e60441616
commit
980ea89714
@ -180,12 +180,12 @@ Note, date time locale (month name, first day of the week ...) are also configur
|
||||
### Events
|
||||
|
||||
| Name | Description | Type |
|
||||
| --------------- | ---------------------------------------------------------- | ----------------------------------------------------------------------------------- |
|
||||
| --------------- | ---------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
|
||||
| change | triggers when user confirms the value | ^[Function]`(val: typeof v-model) => void` |
|
||||
| blur | triggers when Input blurs | ^[Function]`(e: FocusEvent) => void` |
|
||||
| focus | triggers when Input focuses | ^[Function]`(e: FocusEvent) => void` |
|
||||
| calendar-change | triggers when the calendar selected date is changed. | ^[Function]`(val: [Date, null \| Date]) => void` |
|
||||
| panel-change | triggers when the navigation button click. | ^[Function]`(date: [Dayjs, Dayjs], mode: 'month' \| 'year', view: unknown) => void` |
|
||||
| panel-change | triggers when the navigation button click. | ^[Function]`(date: Date \| [Date, Date], mode: 'month' \| 'year', view?: string) => void` |
|
||||
| visible-change | triggers when the DatePicker's dropdown appears/disappears | ^[Function]`(visibility: boolean) => void` |
|
||||
|
||||
### Slots
|
||||
|
Loading…
Reference in New Issue
Block a user