diff --git a/src/components/05_quotation/QuotationCard.vue b/src/components/05_quotation/QuotationCard.vue index e9f6885c..19f1a8bb 100644 --- a/src/components/05_quotation/QuotationCard.vue +++ b/src/components/05_quotation/QuotationCard.vue @@ -24,6 +24,7 @@ defineProps<{ hideAction?: boolean; useCancel?: boolean; disableCancel?: boolean; + useRejectCancel?: boolean; customData?: { label: string; @@ -41,6 +42,7 @@ defineEmits<{ (e: 'example'): void; (e: 'preview'): void; (e: 'cancel'): void; + (e: 'rejectCancel'): void; }>(); const rand = Math.random(); @@ -62,15 +64,16 @@ const rand = Math.random(); solid /> -
+
+
-