24 lines
406 B
Vue
24 lines
406 B
Vue
<template>
|
|
<div id="nav">
|
|
<Navbar />
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Navbar from "@/components/Navbar.vue";
|
|
export default {
|
|
setup() {},
|
|
components: { Navbar },
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
#app {
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-align: center;
|
|
color: #2c3e50;
|
|
}
|
|
</style> |