FitTrackee/fittrackee_client/src/App.vue

38 lines
748 B
Vue
Raw Normal View History

<template>
2021-07-25 13:03:34 +02:00
<NavBar />
2021-08-15 09:24:10 +02:00
<div class="app-container">
<router-view />
</div>
2021-07-25 17:10:55 +02:00
<Footer />
</template>
2021-07-25 13:03:34 +02:00
<script lang="ts">
2021-08-15 12:30:39 +02:00
import { defineComponent, onBeforeMount } from 'vue'
2021-08-11 22:21:26 +02:00
2021-08-15 12:30:39 +02:00
import { ROOT_STORE } from '@/store/constants'
import { useStore } from '@/use/useStore'
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-08-15 12:30:39 +02:00
setup() {
const store = useStore()
onBeforeMount(() =>
store.dispatch(ROOT_STORE.ACTIONS.GET_APPLICATION_CONFIG)
)
},
2021-07-25 13:23:25 +02:00
})
2021-07-25 13:03:34 +02:00
</script>
<style lang="scss">
@import '~@/scss/base';
2021-08-15 09:24:10 +02:00
.app-container {
height: $app-height;
}
</style>