Сверстал loginPage поправил аватар сайдбара
This commit is contained in:
17
src/components/LoggedInLayout/LoggedInLayout.vue
Normal file
17
src/components/LoggedInLayout/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>
|
||||
@@ -19,8 +19,8 @@ export default {
|
||||
pageSettings: [
|
||||
{
|
||||
id: "calendar",
|
||||
path: "#/",
|
||||
active: false,
|
||||
path: "#/calendar",
|
||||
active: true,
|
||||
icon: "icon-calendar-2",
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user