Files
bowlingManager/frontend/src/layouts/ClubLayout.vue
T
2025-04-17 23:32:39 +09:00

19 lines
225 B
Vue

<template>
<div class="club-layout">
<router-view></router-view>
</div>
</template>
<script>
export default {
name: 'ClubLayout'
}
</script>
<style scoped>
.club-layout {
width: 100%;
height: 100%;
}
</style>