2022-09-15 19:15:07 +02:00
|
|
|
<template>
|
|
|
|
<div class="bg-neutral-100 dark:bg-neutral-900 text-primary h-screen flex flex-col">
|
2022-09-19 15:11:13 +02:00
|
|
|
<LayoutTopbar />
|
|
|
|
<div class="overflow-y-scroll pt-3">
|
|
|
|
<NuxtPage />
|
|
|
|
</div>
|
|
|
|
<LayoutNavbar class="mt-auto" />
|
2022-09-15 19:15:07 +02:00
|
|
|
</div>
|
2022-09-19 09:36:47 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import { doc, getFirestore, serverTimestamp, writeBatch, collection, getDocs } from "firebase/firestore";
|
|
|
|
|
|
|
|
const db = getFirestore()
|
|
|
|
|
2022-09-19 15:11:13 +02:00
|
|
|
const ledenlijst = ref([])
|
2022-09-19 09:36:47 +02:00
|
|
|
|
2022-09-19 15:11:13 +02:00
|
|
|
|
|
|
|
provide('firebase', { db, ledenlijst })
|
2022-09-19 09:36:47 +02:00
|
|
|
</script>
|