mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
16 lines
232 B
Vue
16 lines
232 B
Vue
<template>
|
|
<el-time-select
|
|
v-model="value"
|
|
start="08:30"
|
|
step="00:15"
|
|
end="18:30"
|
|
placeholder="Select time"
|
|
/>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const value = ref('')
|
|
</script>
|