Implemented new design for PriceCards, added some icons for visuals, added calculation per price card
19 lines
406 B
Vue
19 lines
406 B
Vue
<template>
|
|
<section class="content flex-col">
|
|
<div class="pc-wrapper flex-col">
|
|
<PpPriceCard v-for="num in cards" :uid="num" />
|
|
</div>
|
|
<PpButton class="cta" @click="addCard">
|
|
<Icon name="uil:plus" mode="svg" />
|
|
Vergleich hinzufügen
|
|
</PpButton>
|
|
</section>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const cards = ref(1)
|
|
|
|
const addCard = () => {
|
|
cards.value++
|
|
}
|
|
</script>
|