From 0aa495e05b86e5a95dfd8d7bc23b078abad7f23f Mon Sep 17 00:00:00 2001 From: webfussel Date: Sat, 10 May 2025 14:33:49 +0200 Subject: [PATCH] add: reactive store Add useLocalStorage from VueUse --- app/components/Pp/PriceCard.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/Pp/PriceCard.vue b/app/components/Pp/PriceCard.vue index f9fc9e8..c2a1c3a 100755 --- a/app/components/Pp/PriceCard.vue +++ b/app/components/Pp/PriceCard.vue @@ -49,7 +49,7 @@ {{ intl.format(ppl) }} - Pro 100 {{ card.layers ? `(${card.layers})` : '' }} + Pro 1000 {{ card.layers ? `(${card.layers})` : '' }} @@ -95,7 +95,7 @@ const { lengthX, direction, isSwiping } = useSwipe(top, { const priceClean = computed(() => +replaceComma(card.price)) const ppr = computed(() => priceClean.value / +card.roles) const pps = computed(() => (ppr.value / +card.sheets) * 100) -const ppl = computed(() => (pps.value / +card.layers)) +const ppl = computed(() => (pps.value / +card.layers) * 10) const update = () => emit('update')