diff --git a/frontend/app.vue b/frontend/app.vue index 6f9e090..ef584ea 100644 --- a/frontend/app.vue +++ b/frontend/app.vue @@ -30,6 +30,7 @@ const userLoaded = ref(false) const userData = ref(null) const userPersons = ref([]) const userAllPersons = ref([]) +const calEvents = ref([]) onMounted(() => { auth.value = getAuth() @@ -75,5 +76,5 @@ const getPersons = async (persons) => { const ledenlijst = ref([]) -provide('firebase', { db, ledenlijst, isAuthenticated, user, userData, userPersons, auth, userAllPersons, getPersons }) +provide('firebase', { db, ledenlijst, isAuthenticated, user, userData, userPersons, auth, userAllPersons, getPersons, calEvents }) \ No newline at end of file diff --git a/frontend/components/layout/Navbar.vue b/frontend/components/layout/Navbar.vue index 2d50c64..fe5912e 100644 --- a/frontend/components/layout/Navbar.vue +++ b/frontend/components/layout/Navbar.vue @@ -1,6 +1,6 @@