62,269
社区成员
发帖
与我相关
我的任务
分享
let html=this.$refs.printer.$el.innerHTML;
const document = window.document;
const iframe = window.frames[0];
iframe.document.head.innerHTML = document.head.innerHTML;
iframe.document.body.innerHTML = html;
// 打印
setTimeout(() => {
iframe.window.print();
}, 200);
