forked from opentiny/tiny-vue
27 lines
428 B
Vue
27 lines
428 B
Vue
<template>
|
|
<div class="demo-date-picker-wrap">
|
|
<tiny-time-picker v-model="value1" :editable="false"></tiny-time-picker>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { TimePicker } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyTimePicker: TimePicker
|
|
},
|
|
data() {
|
|
return {
|
|
value1: new Date(2016, 9, 10, 18, 40)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.demo-date-picker-wrap {
|
|
width: 182px;
|
|
}
|
|
</style>
|