product-card
Some checks failed
Deploy / build-and-deploy (push) Failing after 9s

This commit is contained in:
Veselov
2025-09-21 01:27:48 +03:00
parent e2ebf54d56
commit 9b42223a97
10 changed files with 99 additions and 4 deletions

27
pages/cart.vue Normal file
View File

@@ -0,0 +1,27 @@
<template>
<div class="cart">
<div v-if="cartProducts">
{{ cartProducts }}
</div>
<UButton @click="createOrder">
Оформить заказ
</UButton>
</div>
</template>
<script setup lang="ts">
import { usePostOrdersCreate } from '~/api/mutations'
const { getCart } = useCart()
const cartProducts = getCart()
const { mutateAsync } = usePostOrdersCreate()
const createOrder = () => {
mutateAsync(cartProducts)
}
</script>
<style lang="scss">
</style>