Files
bibliomane/front/src/App.vue

16 lines
248 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>