mirror of https://github.com/nocodb/nocodb
DarkPhoenix2704
9 months ago
2 changed files with 30 additions and 0 deletions
@ -0,0 +1,29 @@
|
||||
<script setup lang="ts"> |
||||
|
||||
|
||||
const {t} = useI18n() |
||||
|
||||
const { pageDate, selectedDate, selectedDateRange } = useCalendarViewStoreOrThrow() |
||||
|
||||
const months = computed(() => { |
||||
const date = new Date() |
||||
const months = [] |
||||
for (let i = 0; i < 12; i++) { |
||||
months.push(new Date(date.getFullYear(), i, selectedDate.value.getDate())) |
||||
} |
||||
return months |
||||
}) |
||||
|
||||
</script> |
||||
|
||||
<template> |
||||
|
||||
<div class="grid justify-items-center gap-6 grid-cols-3 overflow-auto nc-scrollbar-md"> |
||||
<NcDateWeekSelector v-for="(month, index) in months" disable-pagination :key="month" v-model:page-date="months[index]" v-model:selected-date="selectedDate" class="max-w-[350px]"/> |
||||
</div> |
||||
|
||||
</template> |
||||
|
||||
<style scoped lang="scss"> |
||||
|
||||
</style> |
Loading…
Reference in new issue