mirror of
https://github.com/Spythere/pojazdownik.git
synced 2026-05-03 05:18:10 +00:00
36 lines
612 B
Vue
36 lines
612 B
Vue
<template>
|
|
<div class="app-container">
|
|
<MainContainer />
|
|
<FooterVue />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "vue";
|
|
import { useStore } from "../store";
|
|
|
|
import MainContainer from "../components/app/MainContainer.vue";
|
|
import FooterVue from "../components/app/Footer.vue";
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
MainContainer,
|
|
FooterVue,
|
|
},
|
|
|
|
data: () => ({
|
|
store: useStore(),
|
|
}),
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.app-container {
|
|
min-height: 100vh;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
</style>
|