[WIP] Добавил форму создания записи на странице календаря

This commit is contained in:
megavrilinvv
2023-06-08 16:38:42 +03:00
parent ecb4e6f3e2
commit a4dce57eef
9 changed files with 141 additions and 7 deletions

View File

@@ -9,7 +9,7 @@
)
img(:src="arrow")
.button.flex
q-btn(color="primary", dense, padding="14px")
q-btn(color="primary", dense, padding="14px", @click="createForm")
q-icon(name="app:icon-plus", size="12px")
.button.flex
q-btn(dense, style="color: var(--font-grey-color)", padding="0px")
@@ -30,7 +30,7 @@ import round from "@/assets/icons/status_round.svg";
export default {
name: "CalendarSidebar",
props: { openSidebar: Function },
props: { openSidebar: Function, createForm: Function },
data() {
return { arrow, group, medcard, round };
},