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 />
|
2021-07-25 17:10:55 +02:00
|
|
|
<Footer />
|
2021-07-24 20:56:37 +02:00
|
|
|
</template>
|
|
|
|
|
2021-07-25 13:03:34 +02:00
|
|
|
<script lang="ts">
|
2021-07-25 13:23:25 +02:00
|
|
|
import { defineComponent } from 'vue'
|
2021-08-11 22:21:26 +02:00
|
|
|
|
2021-07-25 17:10:55 +02:00
|
|
|
import Footer from '@/components/Footer.vue'
|
2021-07-25 13:23:25 +02:00
|
|
|
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: {
|
2021-07-25 17:10:55 +02:00
|
|
|
Footer,
|
2021-07-25 13:23:25 +02:00
|
|
|
NavBar,
|
|
|
|
},
|
|
|
|
})
|
2021-07-25 13:03:34 +02:00
|
|
|
</script>
|
|
|
|
|
2021-07-24 20:56:37 +02:00
|
|
|
<style lang="scss">
|
2021-08-04 09:10:00 +02:00
|
|
|
@import '~@/scss/base';
|
2021-07-24 20:56:37 +02:00
|
|
|
</style>
|