Files
spring-jwt/owner-vue/src/views/Layout/DashboardLayout.vue
bum12ark eb7e7cc8b3 feat(owner-vue): 점주용 회원가입 페이지 구현
- 입력값 validation 추가
2022-02-24 20:10:12 +09:00

33 lines
617 B
Vue

<template>
<v-app id="inspire">
<side-bar v-bind:drawer="drawer"></side-bar>
<top-bar v-on:drawEvent="drawer = !drawer"></top-bar>
<v-main style="background: #f5f5f540">
<v-container class="py-8, px-6" fluid>
<router-view></router-view>
</v-container>
</v-main>
</v-app>
</template>
<script>
import Sidebar from './Sidebar.vue'
import Topbar from "./Topbar.vue";
export default {
name: "DashboardLayout",
components: {
'side-bar': Sidebar,
'top-bar': Topbar
},
data: function() {
return {
drawer: null
}
}
}
</script>
<style scoped>
</style>