Dev branch

This commit is contained in:
Simon Pocrnjič
2025-11-02 12:31:01 +01:00
parent 5f879c9436
commit 63e0958b66
241 changed files with 17686 additions and 7327 deletions
@@ -0,0 +1,17 @@
<script setup>
// Thin wrapper to reuse TrrCreateForm with edit=true
import TrrCreateForm from './TrrCreateForm.vue';
const props = defineProps({
show: { type: Boolean, default: false },
person: { type: Object, required: true },
types: { type: Array, default: () => [] },
banks: { type: Array, default: () => [] },
currencies: { type: Array, default: () => ['EUR'] },
id: { type: Number, default: 0 },
});
</script>
<template>
<TrrCreateForm :show="show" :person="person" :types="types" :banks="banks" :currencies="currencies" :edit="true" :id="id" @close="$emit('close')" />
</template>