pilotwings/frontend/App.vue

22 lines
336 B
Vue
Raw Permalink Normal View History

2024-11-02 18:16:32 +00:00
<template>
<Navbar />
2024-11-03 07:37:04 +00:00
<section class="section">
<div class="container">
<RouterView />
</div>
2024-11-03 07:37:04 +00:00
</section>
2024-11-02 18:16:32 +00:00
</template>
<script lang="ts">
import Navbar from './components/Navbar.vue'
import { RouterView } from 'vue-router'
2024-11-02 18:16:32 +00:00
export default {
2024-11-03 07:37:04 +00:00
name: 'App',
components: {
Navbar,
2024-11-02 21:43:27 +00:00
RouterView,
},
2024-11-02 18:16:32 +00:00
}
</script>