18 lines
336 B
Vue
18 lines
336 B
Vue
<template>
|
|
<div class="is-flex">
|
|
<Sidebar v-if="isLogedIn"/>
|
|
<main class="p-5 is-flex-grow-1">
|
|
<RouterView />
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { applyTheme } from '@/components/theme';
|
|
import Sidebar from '@/components/Sidebar.vue';
|
|
import { isLogedIn } from './global';
|
|
|
|
applyTheme();
|
|
|
|
</script>
|