Files
vtuber-awards/frontend/src/App.vue
T
2026-06-17 11:35:45 +02:00

12 lines
195 B
Vue

<script setup lang="ts">
import { RouterView } from 'vue-router'
import AppShell from './components/AppShell.vue'
</script>
<template>
<AppShell>
<RouterView />
</AppShell>
</template>