安装vue第三方插件报错Could not find a declaration file for module ‘vue-photo-preview‘.

问题:在我进行安装vue的第三方插件的时候遇到了这样的一个问题,报了这样的错误

Could not find a declaration file for module ‘vue-photo-preview’.Try npm install @types/vue-photo-preview if it exists or add a new declaration (.d.ts) file containing declare module 'vue-photo-preview';
安装vue第三方插件报错Could not find a declaration file for module ‘vue-photo-preview‘._第1张图片
解决方法1: npm install @types/vue-photo-preview(如若遇到安装报错,请使用第二种解决方法)

解决方法2:找到shims-vue-d.ts文件
在这里插入图片描述
在这个文件中添加上这行代码就可以了
在这里插入图片描述

重启项目后,发现原先报错飘红的代码就好了,可以继续快乐的继续敲代码了

你可能感兴趣的:(vue,vue,vue.js,typescript)