35 lines
709 B
Vue
35 lines
709 B
Vue
<template>
|
|
<v-app>
|
|
<app-navigation></app-navigation>
|
|
<v-main>
|
|
<v-container class="px-8 py-8">
|
|
<router-view></router-view>
|
|
</v-container>
|
|
</v-main>
|
|
<bottom-navigation></bottom-navigation>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
import AppNavigation from "../../components/AppNavigation.vue";
|
|
import BottomNavigation from "../../components/BottomNavigation.vue";
|
|
|
|
export default {
|
|
name: "HomeLayout",
|
|
components: {
|
|
'app-navigation': AppNavigation,
|
|
"bottom-navigation": BottomNavigation
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.container {
|
|
max-width: 768px;
|
|
background-color: white;
|
|
height: 100%;
|
|
}
|
|
main {
|
|
background-color: #f2f2f2!important;
|
|
}
|
|
</style> |