我尝试添加到项目中的任何第三方Vue.js库都会引发以下错误:
Could not find a declaration file for module ‘vue-qriously‘.
原因是 :
‘vue-xxx’文件可能不是.ts文件而是.js文件
解决方法:
`npm install @types/vue-xxx`
Could not find a declaration file for module 'vue-xxx'.
原文:https://www.cnblogs.com/liqi-0126/p/11015196.html