I use VueI18n but i have an error: TypeError: Cannot read properties of undefined (reading 'use') How con i solve this error? Thnx?
import VueI18n from 'vue-i18n';
import { languages } from './i18n/index.js';
app.use(VueI18n);//here i have error
let locale = 'it';
const messages = Object.assign(languages);
export const i18n = new VueI18n({
locale: locale,
fallbackLocale: 'it',
messages,
i18n
});