Files
th-hotel-simple/client/src/App.vue
2026-07-08 16:20:06 +08:00

12 lines
236 B
Vue

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