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
12
app/pages/index.vue
Normal file
12
app/pages/index.vue
Normal file
|
@ -0,0 +1,12 @@
|
|||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue