mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 18:01:24 +08:00
18 lines
272 B
Vue
18 lines
272 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"
|
||
|
>
|
||
|
</el-time-select>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import { ref } from 'vue'
|
||
|
|
||
|
const value = ref('')
|
||
|
</script>
|