tiny-vue/examples/sites/demos/pc/app/drop-times/start-end-step-composition-...

19 lines
379 B
Vue

<template>
<div class="drop-time-demo-sse">
<tiny-drop-times v-model="value" placeholder="请选择" :start="60" :step="5" :end="720"></tiny-drop-times>
</div>
</template>
<script setup>
import { ref } from 'vue'
import { DropTimes as TinyDropTimes } from '@opentiny/vue'
const value = ref('')
</script>
<style scoped>
.drop-time-demo-sse {
width: 270px;
}
</style>