You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
583 B

3 years ago
<template>
<v-container fluid>
<header class="pt-3">
<v-row>
<v-col cols="12">
<site-header></site-header>
</v-col>
</v-row>
</header>
<main class="pb-10 mt-5">
<div>
<v-row>
<v-col cols="2">
3 years ago
<SideBar />
3 years ago
</v-col>
<v-col cols="10">
<AdminHome />
</v-col>
</v-row>
</div>
</main>
</v-container>
</template>
<script>
3 years ago
import AdminHome from "../components/Dashboard/Main";
3 years ago
export default {
components: {
AdminHome,
},
};
</script>