17 lines
401 B
Vue
17 lines
401 B
Vue
<template>
|
|
<v-layout style="min-height: 100%;">
|
|
<!-- <p>desktop layout</p> -->
|
|
<!-- <div> -->
|
|
<DesktopSideBar />
|
|
<v-app-bar flat>
|
|
<slot name="app-bar-container"></slot>
|
|
</v-app-bar>
|
|
<v-main class="bg-grey-lighten-4 d-flex align-start justify-center">
|
|
<v-container fluid>
|
|
<slot />
|
|
</v-container>
|
|
</v-main>
|
|
<!-- </div> -->
|
|
</v-layout>
|
|
</template>
|