我将pdfmake库与vue.js一起使用,并且我有一个单独的pdfservice,可以在组件中导入。当用户单击按钮时,将调用使用该服务的方法。问题是,我在pdfservice中有一些很重的字体,它们是这样导入的:
import PdfMakeFonts from './staticFiles/PdfMakeFonts'
pdfMake.vfs = pdfFonts.pdfMake.vfs
pdfMake.vfs = {
...pdfMake.vfs,
...PdfMakeFonts,
}
如何在vue组件中延迟加载所有pdfservice或在服务中延迟加载这些字体?
暂无答案!
目前还没有任何答案,快来回答吧!