initial commit

This commit is contained in:
Laurent
2025-02-26 13:23:50 +01:00
commit 02c95eba71
28 changed files with 7113 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<script setup lang="ts">
const months =
[{"January":31},
{"February":28},
{"March":31},
{"April":30},
{"May":31},
{"June":30},
{"July":31},
{"August":31},
{"September":30},
{"October":31},
{"November":30},
{"December":31}];
</script>
<template>
<h1>Calendar</h1>
</template>
<style scoped>
</style>