mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +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>
|