16 lines
259 B
Vue
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>
|