mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
74fa835f9f
- Add `type` into frontmatter field to avoid crowdin auto wrap
3.3 KiB
3.3 KiB
lang | type |
---|---|
en-US | component |
TimeSelect
Use Time Select for time input.
Fixed time picker
Provide a list of fixed time for users to choose.
:::demo Use el-time-select
label, then assign start time, end time and time step with start
, end
and step
.
time-select/basic
:::
Fixed time range
If start time is picked at first, then the end time will change accordingly.
:::demo
time-select/time-range
:::
Attributes
Attribute | Description | Type | Accepted Values | Default |
---|---|---|---|---|
model-value / v-model | binding value | string | — | — |
disabled | whether TimeSelect is disabled | boolean | — | false |
editable | whether the input is editable | boolean | — | true |
clearable | whether to show clear button | boolean | — | true |
size | size of Input | string | medium / small / mini | — |
placeholder | placeholder in non-range mode | string | — | — |
name | same as name in native input |
string | — | — |
prefix-icon | Custom prefix icon class | string | — | el-icon-time |
clear-icon | Custom clear icon class | string | — | el-icon-circle-close |
start | start time | string | — | 09:00 |
end | end time | string | — | 18:00 |
step | time step | string | — | 00:30 |
min-time | minimum time, any time before this time will be disabled | string | — | 00:00 |
max-time | maximum time, any time after this time will be disabled | string | — | — |
Events
Event Name | Description | Parameters |
---|---|---|
change | triggers when user confirms the value | component's binding value |
blur | triggers when Input blurs | component instance |
focus | triggers when Input focuses | component instance |
Methods
Method | Description | Parameters |
---|---|---|
focus | focus the Input component | — |
blur | blur the Input component | — |