1. 首页
  2. 数据库
  3. 其它
  4. vue 中使用print.js导出pdf操作

vue 中使用print.js导出pdf操作

上传者: 2021-02-01 10:45:51上传 PDF文件 268KB 热度 39次
1.print.js // 打印类属性、方法定义 /* eslint-disable */ const Print = function (dom, options) { if (!(this instanceof Print)) return new Print(dom, options); this.options = this.extend({ 'noPrint': '.no-print' }, options); if ((typeof dom) === string) { this.dom = document.querySelector(dom); } else
用户评论