9 lines
162 B
Vue
9 lines
162 B
Vue
<script setup lang="ts">
|
|
import AppShell from "@/components/layout/AppShell.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<AppShell>
|
|
<RouterView />
|
|
</AppShell>
|
|
</template>
|