31 lines
741 B
Vue
31 lines
741 B
Vue
<template>
|
|
<tiny-layout>
|
|
<tiny-row>
|
|
<tiny-col :span="4">
|
|
<tiny-date-picker v-model="value" type="datetime" format="yyyy 年 MM 月 dd 日" time-format="HH 时 mm 分 ss 秒"></tiny-date-picker>
|
|
</tiny-col>
|
|
<tiny-col :span="4">
|
|
<tiny-date-picker v-model="value" type="datetime" format="yyyy 年 MM 月 dd 日" time-format="HH - mm - ss"></tiny-date-picker>
|
|
</tiny-col>
|
|
</tiny-row>
|
|
</tiny-layout>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { DatePicker, Layout, Row, Col } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyDatePicker: DatePicker,
|
|
TinyLayout: Layout,
|
|
TinyRow: Row,
|
|
TinyCol: Col
|
|
},
|
|
data() {
|
|
return {
|
|
value: new Date()
|
|
}
|
|
}
|
|
}
|
|
</script>
|