用的另一位大佬的基于ElementUI + TypeScript 开发的后台管理系统模板,我现在这个模板里使用vue-ueditor-wrap插件,但是编辑器报错:
Could not find a declaration file for module 'vue-ueditor-wrap'. 'c:/Users/admin/Downloads/vue-typescript-admin-template-minimal/node_modules/vue-ueditor-wrap/lib/vue-ueditor-wrap.min.js' implicitly has an 'any' type.
Try npm install @types/vue-ueditor-wrap if it exists or add a new declaration (.d.ts) file containing declare module 'vue-ueditor-wrap';
这个插件并没有发布到 @types 上,所以如果又想在ts项目里使用该插件应该怎么做?
用的另一位大佬的基于ElementUI + TypeScript 开发的后台管理系统模板,我现在这个模板里使用vue-ueditor-wrap插件,但是编辑器报错: Could not find a declaration file for module 'vue-ueditor-wrap'. 'c:/Users/admin/Downloads/vue-typescript-admin-template-minimal/node_modules/vue-ueditor-wrap/lib/vue-ueditor-wrap.min.js' implicitly has an 'any' type. Try
npm install @types/vue-ueditor-wrap
if it exists or add a new declaration (.d.ts) file containingdeclare module 'vue-ueditor-wrap';
这个插件并没有发布到 @types 上,所以如果又想在ts项目里使用该插件应该怎么做?