【报错1】无法找到模块“element-plus/dist/locale/zh-cn.mjs”的声明文件。

报错:无法找到模块“element-plus/dist/locale/zh-cn.mjs”的声明文件。“e:/codeAll/webProject/Project/vue_ts/project727/node_modules/element-plus/dist/locale/zh-cn.mjs”隐式拥有 "any" 类型。
  如果“element-plus”包实际公开了此模块,请尝试添加包含 `declare module‘element-plus/dist/locale/zh-cn.mjs';` 的新声明(.d.ts)文件

【报错1】无法找到模块“element-plus/dist/locale/zh-cn.mjs”的声明文件。_第1张图片

 解决:

在“vite-env.d.ts”文件里添加declare module "element-plus/dist/locale/zh-cn.mjs";

declare module "element-plus/dist/locale/zh-cn.mjs";

【报错1】无法找到模块“element-plus/dist/locale/zh-cn.mjs”的声明文件。_第2张图片

 

你可能感兴趣的:(前端web,vue.js,前端,elementui)