add first draft of vue app

This commit is contained in:
2025-12-13 16:17:00 +01:00
parent e034ac3561
commit 879db7e23b
32 changed files with 6009 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<script setup lang="ts">
import CreateNewList from '../components/CreateNewList.vue'
</script>
<template>
<main class="grid h-full place-content-center">
<CreateNewList></CreateNewList>
</main>
</template>