Componentalization

This commit is contained in:
2025-09-16 22:01:42 +10:00
parent e965cc2780
commit 91771e9573
19 changed files with 1683 additions and 223 deletions

View File

@@ -0,0 +1,17 @@
<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>