From caab7aedf2c67bcb3488719ea8d68c617596e90f Mon Sep 17 00:00:00 2001 From: Methapon Metanipat Date: Thu, 7 Nov 2024 16:50:41 +0700 Subject: [PATCH] chore: update random --- src/components/05_quotation/QuotationCard.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/05_quotation/QuotationCard.vue b/src/components/05_quotation/QuotationCard.vue index ee5be4b2..d0db2d8b 100644 --- a/src/components/05_quotation/QuotationCard.vue +++ b/src/components/05_quotation/QuotationCard.vue @@ -4,7 +4,6 @@ import { formatNumberDecimal } from 'src/stores/utils'; import BadgeComponent from 'components/BadgeComponent.vue'; import KebabAction from '../shared/KebabAction.vue'; import MainButton from '../button/MainButton.vue'; -import { onMounted } from 'vue'; defineProps<{ title?: string; @@ -31,7 +30,7 @@ defineEmits<{ (e: 'preview'): void; }>(); -const rand = Math.random() * 2; +const rand = Math.random();