From eeaaa0cf9f2a00c8a28b4240c46cce01423310fc Mon Sep 17 00:00:00 2001 From: Methapon Metanipat Date: Fri, 18 Oct 2024 14:35:33 +0700 Subject: [PATCH] fix: typo --- src/pages/05_quotation/QuotationFormInfo.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/05_quotation/QuotationFormInfo.vue b/src/pages/05_quotation/QuotationFormInfo.vue index 5abecd19..31389b30 100644 --- a/src/pages/05_quotation/QuotationFormInfo.vue +++ b/src/pages/05_quotation/QuotationFormInfo.vue @@ -58,7 +58,7 @@ const summaryPrice = defineModel<{ totalPrice: number; totalDiscount: number; vat: number; - vatExlucded: number; + vatExcluded: number; finalPrice: number; }>('summaryPrice', { required: true, @@ -66,6 +66,7 @@ const summaryPrice = defineModel<{ totalPrice: 0, totalDiscount: 0, vat: 0, + vatExcluded: 0, finalPrice: 0, }, });