[WIP] Сделал редирект, поправил стили
This commit is contained in:
17
src/components/LoggedInLayout.vue
Normal file
17
src/components/LoggedInLayout.vue
Normal 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>
|
||||
Reference in New Issue
Block a user