11 lines
315 B
Vue
11 lines
315 B
Vue
|
|
<template>
|
||
|
|
<v-layout class="rounded rounded-md">
|
||
|
|
<!-- <p>desktop layout</p> -->
|
||
|
|
<DesktopSideBar />
|
||
|
|
<v-app-bar><slot name="app-bar-container"></slot></v-app-bar>
|
||
|
|
<v-main class="d-flex align-center justify-center" style="min-height: 300px;">
|
||
|
|
<slot />
|
||
|
|
</v-main>
|
||
|
|
</v-layout>
|
||
|
|
</template>
|