forked from opentiny/tiny-vue
27 lines
410 B
Vue
27 lines
410 B
Vue
<template>
|
|
<div class="time-select-demo-basic">
|
|
<tiny-time-select v-model="value" placeholder="选择时间"></tiny-time-select>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { TimeSelect } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyTimeSelect: TimeSelect
|
|
},
|
|
data() {
|
|
return {
|
|
value: ''
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.time-select-demo-basic {
|
|
width: 270px;
|
|
}
|
|
</style>
|