additions to product page
This commit is contained in:
12
components/CartPopup.vue
Normal file
12
components/CartPopup.vue
Normal file
@ -0,0 +1,12 @@
|
||||
<template>
|
||||
<div class="p-[50px] bg-bg-light dark:bg-bg-dark border border-button rounded-2xl">
|
||||
<div class="" v-if="productStore.productList">
|
||||
{{ productStore.productList }}
|
||||
</div>
|
||||
<UiButtonArrow class="w-full" type="fill" :arrow="true">Přejít k pokladně</UiButtonArrow>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
const productStore = useProductStore()
|
||||
</script>
|
Reference in New Issue
Block a user