mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
c2ecb3a773
- Add more cases for running ssr tests
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>
|