Implemented new design for PriceCards, added some icons for visuals, added calculation per price card
9 lines
169 B
Vue
9 lines
169 B
Vue
<template>
|
|
<button class="Button" @click="emit('click')">
|
|
<slot />
|
|
</button>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const emit = defineEmits(['click'])
|
|
</script>
|