14 lines
266 B
JavaScript
14 lines
266 B
JavaScript
export default {
|
|
methods: {
|
|
htmlToPdf () {
|
|
const dom = document.getElementsByClassName(this.pdfId)[0]
|
|
if (dom) {
|
|
this.showScreenLoading(true)
|
|
this.getPdf(dom)
|
|
} else {
|
|
this.showScreenLoading(false)
|
|
}
|
|
}
|
|
}
|
|
}
|