参考
- https://blog.csdn.net/qq_36990322/article/details/105786298 (样式继承问题)
- https://blog.csdn.net/qq_42571665/article/details/127277049 (宽度配置)
说明
样式缺失是因为默认不继承样式。
环境
软件/系统 | 版本 | 说明 |
---|---|---|
dayjs | ^1.6.0 |
步骤
- 安装
yarn add print-js
- 引入
import print from 'print-js'
- 使用
还有很多配置参数,比如传入css的方式,建议查看配置确认
print({
// 要打印的html的节点id
printable: "print-dom",
// 打印类型 html
type: "html",
// 继承样式
targetStyle: '*',
targetStyles: '*',
scanStyles: true,
// 默认800,设置1000是因为我窗口宽度是1000,而导致页面靠近左边,设置1000就正常居中了。
maxWidth: "1000"
})
标签:样式,打印,js,html,print,PDF,1000
From: https://www.cnblogs.com/xiaqiuchu/p/17520805.html