diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-12-07 05:01:08 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-12-07 05:01:08 +0530 |
commit | 4c48edc7905d6fb16b01ea707ee7e730dff78ced (patch) | |
tree | 343839b5c7bcd7abf24ba7ef9f3ba7c33ccf78f8 /src/components/invoice_summary.vue | |
parent | 464dac56714f4fb187785abda04bf3f2170af2a2 (diff) |
added view invoice page with print button!0.3.0
Diffstat (limited to 'src/components/invoice_summary.vue')
-rw-r--r-- | src/components/invoice_summary.vue | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/invoice_summary.vue b/src/components/invoice_summary.vue new file mode 100644 index 0000000..6ca7907 --- /dev/null +++ b/src/components/invoice_summary.vue @@ -0,0 +1,9 @@ +<script setup lang="js"> +import currency from "currency.js" + +const props = defineProps(["items", "isLoading"]) +</script> + +<template> + Total: {{ props.items.reduce((t, c) => t.add(c.TotalAmount), currency(0)) }} +</template> |