fix: typo

This commit is contained in:
Methapon Metanipat 2024-10-18 14:35:33 +07:00
parent b5b5d4f02b
commit eeaaa0cf9f

View file

@ -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,
},
});