Added calendar config base

This commit is contained in:
Alexis
2024-03-31 12:43:12 +02:00
parent 82ff5010b5
commit d903b371b2
3 changed files with 67 additions and 13 deletions

View File

@@ -1,5 +1,11 @@
<script lang="ts" setup>
import { useCalendar } from '@/stores/calendar'
const c = useCalendar()
</script>
<template>
<main class="container">
<h1 class="text-3xl font-bold">Hello world!</h1>
<h1 class="text-3xl font-bold">{{ c }}</h1>
</main>
</template>