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

19 lines
306 B
Vue

<template>
<tiny-date-picker v-model="value" type="daterange" unlink-panels></tiny-date-picker>
</template>
<script lang="jsx">
import { DatePicker } from '@opentiny/vue'
export default {
components: {
TinyDatePicker: DatePicker
},
data() {
return {
value: []
}
}
}
</script>