mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-07 00:36:41 +08:00
add calendar menu
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user