Files
helios-web-vue/layouts/desktop.vue

17 lines
401 B
Vue
Raw Normal View History

2025-02-03 10:47:19 +08:00
<template>
2025-02-03 17:23:16 +08:00
<v-layout style="min-height: 100%;">
2025-02-03 11:23:25 +08:00
<!-- <p>desktop layout</p> -->
2025-02-03 17:23:16 +08:00
<!-- <div> -->
2025-02-03 10:47:19 +08:00
<DesktopSideBar />
2025-02-03 11:23:25 +08:00
<v-app-bar flat>
<slot name="app-bar-container"></slot>
</v-app-bar>
2025-02-03 17:23:16 +08:00
<v-main class="bg-grey-lighten-4 d-flex align-start justify-center">
<v-container fluid>
2025-02-03 11:23:25 +08:00
<slot />
</v-container>
2025-02-03 10:47:19 +08:00
</v-main>
2025-02-03 17:23:16 +08:00
<!-- </div> -->
</v-layout>
2025-02-03 10:47:19 +08:00
</template>