Files
spring-jwt/customer-vue/src/views/Layout/HomeLayout.vue
bum12ark 005e347cad feat(customer-vue): Just pickup 매장 검색 페이지 구현
- 매장 검색 페이지 더보기 버튼 로직 구현
- 페이지 로딩 시 로딩 바 추가
2022-03-03 19:38:05 +09:00

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>