This commit is contained in:
2023-12-02 13:09:23 +01:00
parent 098bc97fa4
commit 45da05c9a4
46 changed files with 2889 additions and 5793 deletions

View File

@@ -0,0 +1,18 @@
<script setup>
const route = useRoute()
const supabase = useSupabaseClient()
console.log(route.params.account)
const accounts = (await supabase.from("bankAccounts").select()).data
</script>
<template>
<div>
</div>
</template>
<style scoped>
</style>