mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
17 lines
253 B
Vue
17 lines
253 B
Vue
<template>
|
|
<el-time-select
|
|
v-model="value"
|
|
start="00:00"
|
|
step="00:30"
|
|
end="23:59"
|
|
placeholder="Select time"
|
|
format="hh:mm A"
|
|
/>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const value = ref('')
|
|
</script>
|