forked from opentiny/tiny-vue
22 lines
342 B
Vue
22 lines
342 B
Vue
<template>
|
|
<tiny-calendar-bar v-model="value" :config="config"></tiny-calendar-bar>
|
|
</template>
|
|
|
|
<script>
|
|
import { CalendarBar } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyCalendarBar: CalendarBar
|
|
},
|
|
data() {
|
|
return {
|
|
value: '2022-12-18',
|
|
config: {
|
|
weekFirst: 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|