Many Changes

This commit is contained in:
2024-02-18 19:51:00 +01:00
parent 1a0b7288df
commit fa0eb73363
11 changed files with 720 additions and 322 deletions

View File

@@ -10,7 +10,13 @@
placeholder="Suche..."
/>
</InputGroup>-->
<Toolbar>
<UButton
@click="router.push('/banking/newAccount')"
>
+ Konto
</UButton>
</Toolbar>
<UTable

View File

@@ -0,0 +1,25 @@
<script setup>
import Axios from "axios"
const newAccounts = ref([])
const setupPage = async () => {
}
</script>
<template>
New
<UButton
@click="setupPage"
>
Setup
</UButton>
</template>
<style scoped>
</style>