INIT: initial commit

Added some initial files, components, functionality
This commit is contained in:
Fiona Lena Urban 2025-02-10 21:19:58 +01:00
commit 72aaf5174d
19 changed files with 9962 additions and 0 deletions

View file

@ -0,0 +1,21 @@
<template>
<form class="PriceCard">
<div class="wrapper">
<PpFormInput label="Name" id="n" :uid="uid" type="text" />
<PpFormInput label="Preis" id="p" :uid="uid" type="number" />
</div>
<div class="wrapper">
<PpFormInput label="Rollen" id="r" :uid="uid" type="number" />
<PpFormInput label="Blätter" id="b" :uid="uid" type="number" />
<PpFormInput label="Lagen" id="l" :uid="uid" type="number" />
</div>
</form>
</template>
<script setup lang="ts">
type Props = {
uid: number
}
const { uid } = defineProps<Props>()
</script>