We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccd48f5 commit 69c4a1fCopy full SHA for 69c4a1f
components/Cart/CartItem.vue
@@ -20,7 +20,7 @@
20
<div class="item">
21
<span class="block mt-2 font-extrabold">Quantity: <br /></span>
22
<span class="item-content">
23
- <QuantityInput
+ <CommonInput
24
:model-value="localQuantity"
25
:min="1"
26
:loading="isUpdating"
@@ -53,7 +53,6 @@
53
54
import { ref, watch } from "vue";
55
import { formatPrice } from "@/utils/functions";
56
-import QuantityInput from "@/components/common/QuantityInput.vue";
57
58
const isRemoving = ref(false);
59
const isUpdating = ref(false);
components/common/QuantityInput.vue renamed to components/common/CommonInput.vue
0 commit comments