handin-website/frontend/src/App.vue
2026-03-03 16:16:36 +01:00

9 lines
162 B
Vue

<script setup lang="ts">
import AppShell from "@/components/layout/AppShell.vue";
</script>
<template>
<AppShell>
<RouterView />
</AppShell>
</template>