28 lines
487 B
Vue
28 lines
487 B
Vue
|
<template>
|
||
|
<Nav />
|
||
|
<router-view />
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent } from 'vue'
|
||
|
import Nav from './components/Nav.vue'
|
||
|
|
||
|
export default defineComponent({
|
||
|
name: 'App',
|
||
|
components: {
|
||
|
Nav,
|
||
|
},
|
||
|
})
|
||
|
</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>
|