[WIP] Сделал редирект, поправил стили

This commit is contained in:
megavrilinvv
2022-10-31 19:31:17 +03:00
parent d34343cb6b
commit ec373a9d9b
4 changed files with 8 additions and 31 deletions

View File

@@ -0,0 +1,17 @@
<template lang="pug">
.flex.flex-col.w-full.h-full.gap-y-2
the-header
.flex.flex-auto
the-sidebar
router-view
</template>
<script>
import TheHeader from "@/components/TheHeader";
import TheSidebar from "@/components/TheSidebar";
export default {
name: "LoggedInLayout",
components: { TheHeader, TheSidebar },
};
</script>