
* change layout * change layout * #22 - wip * wip * wip * #22 - wip * #22 - wip * #22 - wip * #22 - wip * #22 - fix * #22 - wip * #22 - added some tests * #22 - wip * #22 - wip * #22 - fix * #22 - wip * #22 - wip * #22 - wip * #22 - fix * #22 - fix * #22 - fix * #22 - fix * #22 - fix * #22 - fix * #22 - cr fixes * #22 - cr fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl>
20 lines
312 B
Vue
20 lines
312 B
Vue
<template>
|
|
<div class="min-h-full">
|
|
<MainMenu />
|
|
<main class="lg:ml-64 flex flex-col flex-1 py-8">
|
|
<div>
|
|
<slot />
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import MainMenu from '@/Shared/MainMenu'
|
|
|
|
export default {
|
|
name: 'AppLayout',
|
|
components: {MainMenu},
|
|
}
|
|
</script>
|