12 lines
236 B
Vue
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>
|