Vue3 ts使用wangeditor,提示could not find a declaration file for module解决办法

vue3 typescript中使用wangeditor报如下错误:

could not find a declaration file for module '@wangeditor/editor-for-vue'

创建env.d.ts

declare module '@wangeditor/editor-for-vue';

js库导入vue3 ts中如果出现类似错误都可以用如上方式简单解决。

你可能感兴趣的:(软件开发,vue.js,typescript)