vue3 -ts文件导入js文件报错

岑惜 / 2023-05-26 / 原文

1.背景

 

 2.解决

在tsconfig.json文件中添加配置

"noImplicitAny": false, 
"allowJs": true,

或者使用 

 require 来导入文件