mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
26 lines
503 B
Vue
26 lines
503 B
Vue
<template>
|
|
<v-main class="bg-grey-lighten-3">
|
|
<v-container>
|
|
<v-row>
|
|
<v-col v-if="slots.sidemenu" cols="2">
|
|
<v-sheet rounded>
|
|
<slot name="sidemenu"></slot>
|
|
</v-sheet>
|
|
</v-col>
|
|
|
|
<v-col>
|
|
<v-sheet rounded class="pa-3">
|
|
<slot />
|
|
</v-sheet>
|
|
</v-col>
|
|
</v-row>
|
|
</v-container>
|
|
</v-main>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { useSlots } from 'vue'
|
|
|
|
const slots = useSlots()
|
|
</script>
|