引入ElementPlus国际化文件报错(Cannot find module element-plus/dist/locale/zh-cn.mjs or its corresponding typ)

按照官方文档引入国际化

import ElementPlus from 'element-plus'
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'

app.use(ElementPlus, {
  locale: zhCn,
})

然后控制台报错:

Cannot find module element-plus/dist/locale/zh-cn.mjs or its corresponding type declarations.

解决办法:

在根目录下的env.d.ts文件中添加如下代码即可解决

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

 

你可能感兴趣的:(开发DEMO,vue3.2,Element-ui,前端,vue.js)