21 lines
345 B
Vue
21 lines
345 B
Vue
<template>
|
|
<div style="width: 270px">
|
|
<tiny-date-picker v-model="value" type="date" title="日期选择"></tiny-date-picker>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { DatePicker } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyDatePicker: DatePicker
|
|
},
|
|
data() {
|
|
return {
|
|
value: new Date()
|
|
}
|
|
}
|
|
}
|
|
</script>
|