1. ホーム
  2. vue.js

TypeError: undefinedはオブジェクトではありません('i18n._t'を評価中)。

2022-02-19 10:15:27
<パス

背景

今日、vue+elementのユニットテストを書いていて、エラーが報告されました。

ERROR LOG: '[Vue warn]: Error in render: "TypeError: undefined is not an object (evaluating 'i18n._t')"


リゾルブ

vue-i18nを導入してからユニットテストが機能しない

お偉いさんの回答はこうだ。

You need to inject an i18n object when instantiating your component.

Using your example :

import Vue from 'vue'
import Home from '@/components/Home'

import VueI18n from 'vue-i18n'
Vue.use(VueI18n)
const i18n = new VueI18n({});

describe('Home.vue', () => {
  it('should render correct contents', () => {
    const Constructor = Vue.extend(Home)
    const vm = new Constructor({i18n}). $mount()
    expect(vm.$el.querySelector('h1').textContent)
      .to.equal('Welcome to Server Client Project (STP)!')
  })
})

追加するだけ

最後にラッパーのutilクラスを追加するのがベストです。 https://stackoverflow.com/questions/48238906/vue-project-tests-are-failing-when-i-added-vue-i18n-karma-mocha-phantomjs/48239256# 48239256