[WIP] Разделил компоненты календаря

This commit is contained in:
megavrilinvv
2023-05-25 12:51:06 +03:00
parent 17bf66c00f
commit 34674bd248
19 changed files with 29 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
<template lang="pug">
.calendar-container.flex
calendar-sidebar
</template>
<script>
import CalendarSidebar from "@/pages/newCalendar/components/calendarSidebar.vue";
export default {
components: { CalendarSidebar },
};
</script>
<style lang="sass" scoped>
.calendar-container
width: calc(100vw - 80px)
</style>

View File

@@ -0,0 +1,11 @@
<template lang="pug">
</template>
<script>
export default {
name: "CalendarSidebar",
};
</script>
<style lang="sass" scoped></style>

View File

@@ -1,5 +1,5 @@
import { createRouter, createWebHashHistory } from "vue-router";
import TheCalendar from "@/pages/calendar/TheCalendar";
import TheCalendar from "@/pages/newCalendar/TheCalendar";
import TheUser from "@/pages/clients/TheClients";
import TheSettings from "@/pages/settings/TheSettings";
import TheLogin from "@/pages/login/TheLogin";