Merge branch 'ASTRA-101' into 'master'
[WIP] Разделил компоненты календаря See merge request andrusyakka/urban-couscous!386
This commit is contained in:
17
src/pages/newCalendar/TheCalendar.vue
Normal file
17
src/pages/newCalendar/TheCalendar.vue
Normal 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>
|
||||||
11
src/pages/newCalendar/components/calendarSidebar.vue
Normal file
11
src/pages/newCalendar/components/calendarSidebar.vue
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<template lang="pug">
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "CalendarSidebar",
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="sass" scoped></style>
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import { createRouter, createWebHashHistory } from "vue-router";
|
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 TheUser from "@/pages/clients/TheClients";
|
||||||
import TheSettings from "@/pages/settings/TheSettings";
|
import TheSettings from "@/pages/settings/TheSettings";
|
||||||
import TheLogin from "@/pages/login/TheLogin";
|
import TheLogin from "@/pages/login/TheLogin";
|
||||||
|
|||||||
Reference in New Issue
Block a user