TimeSelect 时间选择

用于选择或输入日期

可用时间范围是 00:00-23:59

INFO

TimeSelect demo 还没有编写

属性

TimeSelect 完全继承了 ElTimeSelect的属性 您可以从下面的链接里找到相关文档

typescript声明

export type VTimeSelectProps = VueProps<typeof ElTimeSelect>
export interface VTimeSelectItem<
  T extends object,
  Key extends DeepKey<T> = DeepKey<T>
  > extends VBaseItem<T, Key> {
  props?: VPropDef<T, VTimeSelectProps>
  transfer?: VTransfer<Into<T, Key>, dayjs.Dayjs | number | Date>
}

1
2
3
4
5
6
7
8
9