FitTrackee/fittrackee_client/src/App.vue

40 lines
619 B
Vue
Raw Normal View History

<template>
2021-07-25 13:03:34 +02:00
<NavBar />
<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>
<style lang="scss">
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;
background: #eaeaea;
margin: 0;
min-height: 100vh;
}
a {
color: #40578a;
text-decoration: none;
}
</style>