tiny-vue/examples/docs/resources/pc/demo/date-picker/align.vue

37 lines
835 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<tiny-layout>
<tiny-row>
<tiny-col :span="6">
<label>左对齐</label>
<tiny-date-picker v-model="value" align="left"></tiny-date-picker>
</tiny-col>
<tiny-col :span="6">
<label>右对齐:</label>
<tiny-date-picker v-model="value" align="right"></tiny-date-picker>
</tiny-col>
<tiny-col :span="6">
<label>居中对齐</label>
<tiny-date-picker v-model="value" align="center"></tiny-date-picker>
</tiny-col>
</tiny-row>
</tiny-layout>
</template>
<script lang="jsx">
import { Layout, Row, Col, DatePicker } from '@opentiny/vue'
export default {
components: {
TinyLayout: Layout,
TinyRow: Row,
TinyCol: Col,
TinyDatePicker: DatePicker
},
data() {
return {
value: ''
}
}
}
</script>