export ‘default‘ (imported as ‘vuei18n‘) was not found in ‘vue-i18n‘ (possible exports: DatetimeForm

export ‘default’ (imported as ‘vuei18n’) was not found in ‘vue-i18n’ (possible exports: DatetimeFormat, I18nInjectionKey, NumberFormat, Translation, VERSION, castToVueI18n, createI18n, useI18n, vTDirective)

配置国际化在vue2的时候存在以上这个错误。
npm install vue-i18n默认是最新的包,是vue3的,所以报上面的错,所以要指定版本号

 npm i vue-i18n@6 -S    

然后就成功解决这个问题了

猜你喜欢

转载自blog.csdn.net/qq_46199553/article/details/129361374