|
<template>
|
|
<tiny-calendar-bar v-model="value" cascader-position="start"></tiny-calendar-bar>
|
|
</template>
|
|
|
|
<script>
|
|
import { CalendarBar } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyCalendarBar: CalendarBar
|
|
},
|
|
data() {
|
|
return {
|
|
value: '2022-12-18'
|
|
}
|
|
}
|
|
}
|
|
</script>
|