calendar.d.ts 352 B

123456789101112131415
  1. import { ElementUIComponent } from './component'
  2. export type DateType = Date | String | Number
  3. /** Calendar Component */
  4. export declare class ElCalendar extends ElementUIComponent {
  5. /** Binding value */
  6. value: DateType
  7. /** Specify the display range of the calendar */
  8. range: DateType[]
  9. /** First day of week */
  10. firstDayOfWeek: number
  11. }