2023-04-29 23:15:07 +02:00
|
|
|
<template>
|
|
|
|
<div class="grow bg-gray-900 flex flex-col transition-all" :class="{'ml-56': menuStore.visible, 'ml-0': !menuStore.visible}">
|
|
|
|
<div class="h-16 px-6 flex items-center space-x-3 border-b border-gray-600">
|
|
|
|
<a href="#" @click.prevent="menuStore.toggle()" class="lg:hidden">
|
|
|
|
<svg-sprite src="menu" class="text-gray-100 w-5 h-5"></svg-sprite>
|
|
|
|
</a>
|
|
|
|
<span class="text-sm md:text-xl font-semibold text-white leading-none" v-html="$page.props.title"></span>
|
2023-05-02 23:13:00 +02:00
|
|
|
<slot name="toolbar"></slot>
|
2023-04-29 23:15:07 +02:00
|
|
|
<div class="flex grow justify-between">
|
|
|
|
<portal-target name="toolbar-left"> </portal-target>
|
|
|
|
<portal-target name="toolbar-right"> </portal-target>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-04-29 23:41:26 +02:00
|
|
|
<div :class="pageClass" class="grow flex flex-col">
|
2023-04-29 23:15:07 +02:00
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import {menuStore} from '../../stores/menuStore.js';
|
|
|
|
|
|
|
|
export default {
|
2023-04-29 23:41:26 +02:00
|
|
|
inheritAttrs: false,
|
|
|
|
props: {
|
|
|
|
pageClass: {
|
|
|
|
default: () => '',
|
|
|
|
required: false,
|
|
|
|
type: String,
|
|
|
|
},
|
|
|
|
},
|
2023-04-29 23:15:07 +02:00
|
|
|
data: function () {
|
|
|
|
return {
|
|
|
|
menuStore: menuStore(),
|
|
|
|
};
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|