2020-10-04 19:57:49 +08:00
|
|
|
## 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`.
|
|
|
|
```html
|
|
|
|
<el-time-select
|
|
|
|
v-model="value"
|
2020-12-16 22:09:48 +08:00
|
|
|
start='08:30'
|
|
|
|
step='00:15'
|
|
|
|
end='18:30'
|
2020-10-04 19:57:49 +08:00
|
|
|
placeholder="Select time">
|
|
|
|
</el-time-select>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
value: ''
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
```
|
|
|
|
:::
|
|
|
|
|
|
|
|
### Fixed time range
|
|
|
|
|
|
|
|
If start time is picked at first, then the end time will change accordingly.
|
|
|
|
|
|
|
|
:::demo
|
|
|
|
```html
|
|
|
|
<template>
|
|
|
|
<el-time-select
|
|
|
|
placeholder="Start time"
|
|
|
|
v-model="startTime"
|
2020-12-16 22:09:48 +08:00
|
|
|
start='08:30'
|
|
|
|
step='00:15'
|
|
|
|
end='18:30'
|
|
|
|
>
|
2020-10-04 19:57:49 +08:00
|
|
|
</el-time-select>
|
|
|
|
<el-time-select
|
|
|
|
placeholder="End time"
|
|
|
|
v-model="endTime"
|
2020-12-16 22:09:48 +08:00
|
|
|
start='08:30'
|
|
|
|
step='00:15'
|
|
|
|
end='18:30'
|
|
|
|
:minTime="startTime">
|
2020-10-04 19:57:49 +08:00
|
|
|
</el-time-select>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
startTime: '',
|
|
|
|
endTime: ''
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
```
|
|
|
|
:::
|
|
|
|
|
|
|
|
### Attributes
|
|
|
|
| Attribute | Description | Type | Accepted Values | Default |
|
|
|
|
|---------- |-------------- |---------- |-------------------------------- |-------- |
|
2021-07-10 20:46:51 +08:00
|
|
|
| model-value / v-model | binding value | string | — | — |
|
2021-07-19 15:42:18 +08:00
|
|
|
| disabled | whether TimeSelect is disabled | boolean | — | false |
|
2020-10-04 19:57:49 +08:00
|
|
|
| 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 |
|
|
|
|
| minTime | minimum time, any time before this time will be disabled | string | — | 00:00 |
|
|
|
|
| maxTime | maximum time, any time after this time will be disabled | string | — | — |
|
|
|
|
|
2020-12-16 22:09:48 +08:00
|
|
|
|
2020-10-04 19:57:49 +08:00
|
|
|
### 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 |
|
|
|
|
| ---- | ---- | ---- |
|
2021-07-10 20:46:51 +08:00
|
|
|
| focus | focus the Input component | — |
|
|
|
|
| blur | blur the Input component | — |
|