fej/web/src/App.vue

30 lines
510 B
Vue
Raw Normal View History

2021-04-29 09:58:29 +02:00
<template>
2021-05-01 21:22:12 +02:00
<div>
<Nav />
<router-view />
</div>
2021-04-29 09:58:29 +02:00
</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>