vue2
install(Vue, options) {
Vue.prototype.getPdf = function (title, id, load) {}
}
// plugin 封装
install(app) {
app.config.globalProperties.$getPdf = function (title, id, load) {
}
}
// 具体使用 注意要 将main.js 中的createApp实例export出来
import { app } from '@/main';
app.use(htmlToPdf);
ctx.$getPdf('BlingBling.pdf', route.query.id, _loading);