33 lines
611 B
Vue
33 lines
611 B
Vue
<template>
|
|
<div class="demo-date-picker-wrap">
|
|
<tiny-date-picker v-model="datesValue" type="dates" placeholder="请选择日期"></tiny-date-picker>
|
|
<tiny-date-picker v-model="yearsValue" type="years" placeholder="请选择年份"></tiny-date-picker>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { DatePicker } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyDatePicker: DatePicker
|
|
},
|
|
data() {
|
|
return {
|
|
datesValue: '',
|
|
yearsValue: ''
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.demo-date-picker-wrap {
|
|
width: 280px;
|
|
|
|
& > * {
|
|
margin-top: 12px;
|
|
}
|
|
}
|
|
</style>
|