INIT: initial commit
Added some initial files, components, functionality
This commit is contained in:
commit
72aaf5174d
19 changed files with 9962 additions and 0 deletions
21
app/components/Pp/PriceCard.vue
Normal file
21
app/components/Pp/PriceCard.vue
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue