19 lines
342 B
Vue
19 lines
342 B
Vue
<template>
|
|
<div class="is-flex">
|
|
<Sidebar />
|
|
<main class="p-5 is-flex-grow-1">
|
|
<RouterView />
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { useI18n } from 'vue-i18n'
|
|
import { applyTheme } from '@/components/theme';
|
|
import Sidebar from '@/components/Sidebar.vue';
|
|
|
|
applyTheme();
|
|
|
|
const { t } = useI18n();
|
|
</script>
|