Select для формы создания эвента выведен в отдельный компонент, изменена стилизация формы с использованием сетки, удалены лишние пакеты

This commit is contained in:
DwCay
2022-10-11 21:37:38 +03:00
parent 2657927aef
commit 68c639569d
7 changed files with 806 additions and 430 deletions

View File

@@ -1,11 +1,11 @@
<template lang="pug">
form-add-event
calendar-form-add-event
</template>
<script>
import FormAddEvent from './components/CalendarFormAddEvent.vue';
import CalendarFormAddEvent from "./components/CalendarFormAddEvent.vue";
export default {
name: "TheCalendar",
components: {FormAddEvent}
components: {CalendarFormAddEvent}
}
</script>