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

21 lines
315 B
Vue

<template>
<div style="width: 270px">
<tiny-date-picker v-model="value"></tiny-date-picker>
</div>
</template>
<script lang="jsx">
import { DatePicker } from '@opentiny/vue'
export default {
components: {
TinyDatePicker: DatePicker
},
data() {
return {
value: ''
}
}
}
</script>