21 lines
368 B
Vue
21 lines
368 B
Vue
<template>
|
|
<div>
|
|
<tiny-time-picker v-model="value1" name="name" placeholder="选择时间范围"></tiny-time-picker>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { TimePicker } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyTimePicker: TimePicker
|
|
},
|
|
data() {
|
|
return {
|
|
value1: new Date(2016, 9, 10, 18, 40)
|
|
}
|
|
}
|
|
}
|
|
</script>
|