localhost-front/src/App.vue
2024-12-16 13:01:03 +09:00

12 lines
248 B
Vue

<template>
<normal-layout>
<template #content>
<router-view></router-view>
</template>
</normal-layout>
</template>
<script setup>
import NormalLayout from './layouts/NormalLayout.vue';
</script>
<style></style>