diff --git a/src/pages/05_quotation/peview/ViewForm.vue b/src/pages/05_quotation/peview/ViewForm.vue index f70f7b0e..da2450fc 100644 --- a/src/pages/05_quotation/peview/ViewForm.vue +++ b/src/pages/05_quotation/peview/ViewForm.vue @@ -18,6 +18,7 @@ import { QuotationPayload } from 'src/stores/quotations/types'; // NOTE: Import Components import ViewHeader from './ViewHeader.vue'; import BankComponents from './BankComponents.vue'; +import PrintButton from 'src/components/button/PrintButton.vue'; const quotationForm = useQuotationForm(); const optionStore = useOptionStore(); @@ -184,9 +185,16 @@ onMounted(async () => { watch(elements, () => { console.log(elements.value); }); + +function print() { + window.print(); +}