Skip to content

Commit 69c4a1f

Browse files
committed
Input
1 parent ccd48f5 commit 69c4a1f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

components/Cart/CartItem.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<div class="item">
2121
<span class="block mt-2 font-extrabold">Quantity: <br /></span>
2222
<span class="item-content">
23-
<QuantityInput
23+
<CommonInput
2424
:model-value="localQuantity"
2525
:min="1"
2626
:loading="isUpdating"
@@ -53,7 +53,6 @@
5353
5454
import { ref, watch } from "vue";
5555
import { formatPrice } from "@/utils/functions";
56-
import QuantityInput from "@/components/common/QuantityInput.vue";
5756
5857
const isRemoving = ref(false);
5958
const isUpdating = ref(false);

0 commit comments

Comments
 (0)