Open Sjoerd82 opened 3 years ago
I am using this in Vue 2.6.12
npm i print-js --save
In component:
import printJs from 'print-js'
...
printJs({ printable: this.pdf, type: 'pdf', base64: true })
How to make it print whole page? I am passing an id and type
print() {
printJs({ printable: 'page', type: 'html' })
}
but getting an error
TypeError: Cannot read properties of null (reading 'print') at performPrint (print.js?add5:903:1)
I've tried both importing as print and printJS, both ways won't work. I've seen a lot of similar issues on the forums here. Perhaps add instructions on how to add this package to a Vue setup.