element-plus/ssr-testing/cases/time-select.vue
JeremyWuuuuu c2ecb3a773 test(ssr): add ssr testing cases
- Add more cases for running ssr tests
2022-03-18 16:53:37 +08:00

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>