My vue ponent like this :
<template>
...
<b-modal id="modalInvoice" size="lg" title="Invoice">
<Invoice/>
<div slot="modal-footer" class="w-100">
<b-btn size="sm" class="float-right" variant="warning" @click="show=false">
<i class="fa fa-print"></i> Print
</b-btn>
</div>
</b-modal>
...
<b-btn variant="warning" class="btn-square mt-2" v-b-modal.modalInvoice @click="checkout()"><i class="fa fa-credit-card-alt"></i>Checkout</b-btn>
...
</template>
<script>
...
export default {
...
methods: {
print() {
window.print()
}
}
}
</script>
If I click print button, it works. But it displays the entire website. I just want if I click the print button, it only shows the contents of the modal
How can I do it?
My vue ponent like this :
<template>
...
<b-modal id="modalInvoice" size="lg" title="Invoice">
<Invoice/>
<div slot="modal-footer" class="w-100">
<b-btn size="sm" class="float-right" variant="warning" @click="show=false">
<i class="fa fa-print"></i> Print
</b-btn>
</div>
</b-modal>
...
<b-btn variant="warning" class="btn-square mt-2" v-b-modal.modalInvoice @click="checkout()"><i class="fa fa-credit-card-alt"></i>Checkout</b-btn>
...
</template>
<script>
...
export default {
...
methods: {
print() {
window.print()
}
}
}
</script>
If I click print button, it works. But it displays the entire website. I just want if I click the print button, it only shows the contents of the modal
How can I do it?
Share asked Sep 11, 2018 at 14:26 moses tohmoses toh 13.2k81 gold badges264 silver badges459 bronze badges 2- Its because you are printing the full page with window.print(), You should have a boolean variable to show and hide the modal. – Tiago Neiva Commented Sep 11, 2018 at 14:37
- @Tiago Neiva What do you mean? I need a spesific answer – moses toh Commented Sep 11, 2018 at 15:08
2 Answers
Reset to default 9One way to doing this is by creating a clone of the modal and using css to limit visibility of what's printed:
print () {
const modal = document.getElementById("modalInvoice")
const cloned = modal.cloneNode(true)
let section = document.getElementById("print")
if (!section) {
section = document.createElement("div")
section.id = "print"
document.body.appendChild(section)
}
section.innerHTML = "";
section.appendChild(cloned);
window.print();
}
@media screen {
#print {
display: none;
}
}
@media print {
body * {
visibility:hidden;
}
#print, #print * {
visibility:visible;
}
#print {
position:absolute;
left:0;
top:0;
}
}
Really liked Brian's answer, so I made a version with Vue 2 and Typescript
print(): void {
const modalContent= this.$refs['modalInvoice'] as HTMLElement;
const clonedModalContent: Node | null =
modalContent && modalContent.cloneNode(true);
let section = this.$refs.print as HTMLElement;
if (!section) {
section = document.createElement('div');
section.id = 'print';
document.body.appendChild(section);
}
section.innerHTML = '';
clonedModalContent && section.appendChild(clonedModalContent);
window.print();
}