2021-09-17 00:18:50 +08:00
|
|
|
# TimeSelect
|
2020-10-04 19:57:49 +08:00
|
|
|
|
|
|
|
Use Time Select for time input.
|
|
|
|
|
2021-09-17 00:18:50 +08:00
|
|
|
## Fixed time picker
|
2020-10-04 19:57:49 +08:00
|
|
|
|
|
|
|
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`.
|
2021-09-04 19:29:28 +08:00
|
|
|
|
2021-09-17 00:18:50 +08:00
|
|
|
time-select/basic
|
2021-09-04 19:29:28 +08:00
|
|
|
|
2020-10-04 19:57:49 +08:00
|
|
|
:::
|
|
|
|
|
2021-09-17 00:18:50 +08:00
|
|
|
## Fixed time range
|
2020-10-04 19:57:49 +08:00
|
|
|
|
|
|
|
If start time is picked at first, then the end time will change accordingly.
|
|
|
|
|
|
|
|
:::demo
|
2021-09-04 19:29:28 +08:00
|
|
|
|
2021-09-17 00:18:50 +08:00
|
|
|
time-select/time-range
|
2021-09-04 19:29:28 +08:00
|
|
|
|
2020-10-04 19:57:49 +08:00
|
|
|
:::
|
|
|
|
|
2021-09-17 00:18:50 +08:00
|
|
|
## Attributes
|
2020-10-04 19:57:49 +08:00
|
|
|
|
2021-09-04 19:29:28 +08:00
|
|
|
| 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 |
|
2021-09-17 00:18:50 +08:00
|
|
|
| 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 | — | — |
|
2020-12-16 22:09:48 +08:00
|
|
|
|
2021-09-17 00:18:50 +08:00
|
|
|
## Events
|
2021-09-04 19:29:28 +08:00
|
|
|
|
|
|
|
| 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 |
|
2020-10-04 19:57:49 +08:00
|
|
|
|
2021-09-17 00:18:50 +08:00
|
|
|
## Methods
|
2021-09-04 19:29:28 +08:00
|
|
|
|
|
|
|
| Method | Description | Parameters |
|
|
|
|
| ------ | ------------------------- | ---------- |
|
|
|
|
| focus | focus the Input component | — |
|
|
|
|
| blur | blur the Input component | — |
|