vue3+vite搭建后台项目-1 引入element-plus 中文包,打包时报错问题

vue3+vite搭建后台项目-1 引入element-plus 中文包,打包时报错问题

终端报错

If the'element-plus'package actually exposes this module, try adding a new declaration (.d.ts) file containing are module'element-plus/dist/locale/zh-cn.mjs'dec
import zhCn from'element-plus/dist/locale/zh-cn.mjs'

请添加图片描述

解决方案 加入下方注释 //@ts-ignore 切记加//

// @ts-ignore忽略当前文件ts类型的检测否则有红色提示(打包会失败)
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'

你可能感兴趣的:(vue3,vue,typescript)