2021-04-29 09:58:29 +02:00
|
|
|
<template>
|
2021-05-01 19:09:58 +02:00
|
|
|
<Nav />
|
2021-04-29 09:58:29 +02:00
|
|
|
<router-view />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue'
|
|
|
|
import Nav from './components/Nav.vue'
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
name: 'App',
|
|
|
|
components: {
|
2021-05-01 19:09:58 +02:00
|
|
|
Nav
|
|
|
|
}
|
2021-04-29 09:58:29 +02:00
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
#app {
|
|
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
text-align: center;
|
|
|
|
color: #2c3e50;
|
|
|
|
margin-top: 60px;
|
|
|
|
}
|
|
|
|
</style>
|