Сверстал loginPage поправил аватар сайдбара

This commit is contained in:
megavrilinvv
2022-10-31 17:09:40 +03:00
parent 99e1126863
commit d34343cb6b
12 changed files with 518 additions and 17 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>

View File

@@ -19,8 +19,8 @@ export default {
pageSettings: [
{
id: "calendar",
path: "#/",
active: false,
path: "#/calendar",
active: true,
icon: "icon-calendar-2",
},
{