iview/test/routers/date.vue
梁灏 7c4c9d9ce9 update TimePicker css
update TimePicker css
2017-01-03 11:52:22 +08:00

19 lines
510 B
Vue

<template>
<row>
<i-col span="12">
<Time-picker :value="val" type="time" placeholder="选择时间" style="width: 168px"></Time-picker>
</i-col>
<i-col span="12">
<Time-picker type="timerange" placement="bottom-end" placeholder="选择时间" style="width: 168px"></Time-picker>
</i-col>
</row>
</template>
<script>
export default {
data () {
return {
val: new Date
}
}
}
</script>