19 lines
379 B
Vue
19 lines
379 B
Vue
<template>
|
|
<div class="demo-date-picker-wrap">
|
|
<tiny-time-picker v-model="value1" :editable="false"></tiny-time-picker>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import { TimePicker as TinyTimePicker } from '@opentiny/vue'
|
|
|
|
const value1 = ref(new Date(2016, 9, 10, 18, 40))
|
|
</script>
|
|
|
|
<style scoped>
|
|
.demo-date-picker-wrap {
|
|
width: 182px;
|
|
}
|
|
</style>
|