add calendar menu

This commit is contained in:
jxxghp
2023-06-27 10:48:00 +08:00
parent f56f509f07
commit 81d0181ec2
3 changed files with 26 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
<template>
<VCalendar ref="calendar" v-model="start" :type="type" :end="end" color="primary"></VCalendar>
</template>
<script setup lang="ts">
import { ref } from 'vue';
const start = ref('2019-01-01');
const end = ref('2019-01-06');
const type = ref('month');
</script>