add fullcalendar

This commit is contained in:
jxxghp
2023-06-27 15:45:59 +08:00
parent 0c28a24099
commit 0f200ece26
5 changed files with 422 additions and 94 deletions

View File

@@ -1,11 +1,10 @@
<template>
<VCalendar ref="calendar" v-model="start" :type="type" :end="end" color="primary"></VCalendar>
</template>
<script setup lang="ts">
import { ref } from 'vue';
import FullCalendarView from '@/views/subscribe/FullCalendarView.vue';
const start = ref('2019-01-01');
const end = ref('2019-01-06');
const type = ref('month');
</script>
<template>
<div>
<FullCalendarView/>
</div>
</template>