18 lines
357 B
Vue
18 lines
357 B
Vue
<script setup lang="ts">
|
|
import AppLayout from "@/layouts/AppLayout.vue";
|
|
|
|
defineOptions({
|
|
layout: AppLayout
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<section style="position: relative;min-height: 100vh;display:flex;align-items: center;justify-content: center;">
|
|
<v-date-picker show-adjacent-months></v-date-picker>
|
|
</section>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|