在从vue2转到vue3的时候,顺便用了typescript,然后发现原来的好多插件都不能用了。比如vue-print-nb,需要使用vue3-print-nb,但是这个插件没有@types/vue3-print-nb,就自己declare一下(虽然不声明也能用,但是在严格模式下编译不通过)。
在
shims-vue.d.ts文件中加入
declare module 'vue3-print-nb';
所以总结出来,可以先尝试
npm install @types/xxxx如果找不到,则自己声明
declare module 'xxxx';
.jpg?table=block&id=15e1f2f0-5182-80c4-b595-f5c249736c8d&t=15e1f2f0-5182-80c4-b595-f5c249736c8d)




