diff --git a/src/components/05_quotation/QuotationCard.vue b/src/components/05_quotation/QuotationCard.vue index 61a7489f..ee5be4b2 100644 --- a/src/components/05_quotation/QuotationCard.vue +++ b/src/components/05_quotation/QuotationCard.vue @@ -4,6 +4,7 @@ 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; @@ -29,11 +30,14 @@ defineEmits<{ (e: 'example'): void; (e: 'preview'): void; }>(); + +const rand = Math.random() * 2;