mycurelabs / vue-html-to-paper

Vue mixin for paper printing html elements.
MIT License
298 stars 102 forks source link

access $htmlToPaper function in script setup #118

Closed cobategit closed 1 year ago

cobategit commented 1 year ago

i find how to access $htmlToPaper in script setup,

first me declare in app.js app.provide("nameProvide", app.config.globalProperties.$htmlToPaper);

and in your file want to generate pdf import { inject } from "vue"; const globalProvide = inject("nameProvide");

jaywilburn commented 1 year ago

How are you using it after you inject it?