Files
bibliomane/front/src/App.vue
Arthur Lefebvre 8432902df1 Second commit
added few test, first api to add book
2025-09-23 17:16:48 +02:00

16 lines
259 B
Vue

<script setup>
import AppNavBar from './AppNavBar.vue'
import { RouterView } from 'vue-router'
</script>
<template>
<header>
<AppNavBar/>
</header>
<main class="section">
<RouterView />
</main>
</template>
<style scoped></style>