// 设置语言为中文import { locale } from 'element-plus'import lang from 'element-plus/lib/locale/lang/zh-cn'import 'dayjs/locale/zh-cn'// https://github.com/anncwb/vit...// 解决elementplus locale在不同模式下导出不同if (typeof locale === "function") { locale(lang); // dev} else { // @ts-ignore locale.use(lang); // production}
import { locale } from 'element-plus'import lang from 'element-plus/lib/locale/lang/zh-cn'locale(lang)
// 设置语言为中文
import { locale } from 'element-plus'
import lang from 'element-plus/lib/locale/lang/zh-cn'
import 'dayjs/locale/zh-cn'
// https://github.com/anncwb/vit...
// 解决elementplus locale在不同模式下导出不同
if (typeof locale === "function") {
locale(lang); // dev
} else {
// @ts-ignore
locale.use(lang); // production
}