2021-07-24 20:56:37 +02:00
|
|
|
<template>
|
2021-07-25 13:03:34 +02:00
|
|
|
<NavBar />
|
2021-07-24 20:56:37 +02:00
|
|
|
<router-view />
|
|
|
|
</template>
|
|
|
|
|
2021-07-25 13:03:34 +02:00
|
|
|
<script lang="ts">
|
2021-07-25 13:23:25 +02:00
|
|
|
import { defineComponent } from 'vue'
|
|
|
|
import NavBar from '@/components/NavBar.vue'
|
2021-07-25 13:03:34 +02:00
|
|
|
|
2021-07-25 13:23:25 +02:00
|
|
|
export default defineComponent({
|
|
|
|
name: 'App',
|
|
|
|
components: {
|
|
|
|
NavBar,
|
|
|
|
},
|
|
|
|
})
|
2021-07-25 13:03:34 +02:00
|
|
|
</script>
|
|
|
|
|
2021-07-24 20:56:37 +02:00
|
|
|
<style lang="scss">
|
2021-07-25 17:08:22 +02:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2021-07-25 13:23:25 +02:00
|
|
|
#app {
|
|
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
color: #2c3e50;
|
2021-07-24 20:56:37 +02:00
|
|
|
|
2021-07-25 17:08:22 +02:00
|
|
|
background: #eaeaea;
|
2021-07-24 20:56:37 +02:00
|
|
|
|
2021-07-25 17:08:22 +02:00
|
|
|
margin: 0;
|
|
|
|
min-height: 100vh;
|
|
|
|
}
|
2021-07-24 20:56:37 +02:00
|
|
|
|
2021-07-25 17:08:22 +02:00
|
|
|
a {
|
|
|
|
color: #40578a;
|
|
|
|
text-decoration: none;
|
2021-07-24 20:56:37 +02:00
|
|
|
}
|
|
|
|
</style>
|