propapier/app/pages/index.vue
webfussel 72aaf5174d INIT: initial commit
Added some initial files, components, functionality
2025-02-10 21:19:58 +01:00

12 lines
213 B
Vue

<template>
<PpPriceCard v-for="num in cards" :uid="num" />
<button @click="addCard">ADD</button>
</template>
<script setup lang="ts">
const cards = ref(1)
const addCard = () => {
cards.value++
}
</script>