cic-dashboard/layouts/default.vue

21 lines
328 B
Vue
Raw Permalink Normal View History

2022-05-12 11:07:31 +02:00
<template>
<v-app>
<Sidebar />
<v-main class="secondary">
<v-container fluid>
<nuxt />
</v-container>
</v-main>
</v-app>
</template>
<script>
import Sidebar from '~/components/base/DashboardSidebar.vue'
export default {
name: 'DefaultLayout',
components: {
Sidebar,
},
}
</script>