mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
814 B
31 lines
814 B
<script lang="ts" setup> |
|
const { selectedDate, activeDates } = useCalendarViewStoreOrThrow() |
|
|
|
const months = computed(() => { |
|
const months = [] |
|
for (let i = 0; i < 12; i++) { |
|
months.push(selectedDate.value.set('month', i).set('date', 1)) |
|
} |
|
return months |
|
}) |
|
</script> |
|
|
|
<template> |
|
<div |
|
class="flex flex-wrap gap-6 pb-4 items-center justify-center overflow-auto nc-scrollbar-md" |
|
data-testid="nc-calendar-year-view" |
|
> |
|
<NcDateWeekSelector |
|
v-for="(_, index) in months" |
|
:key="index" |
|
v-model:active-dates="activeDates" |
|
v-model:page-date="months[index]" |
|
v-model:selected-date="selectedDate" |
|
class="max-w-[350px]" |
|
data-testid="nc-calendar-year-view-month-selector" |
|
disable-pagination |
|
/> |
|
</div> |
|
</template> |
|
|
|
<style lang="scss" scoped></style>
|
|
|