我正在尝试测试引用Vuex存储的基本Vue组件。我以为我将Vue的示例(https://vue-test-utils.vuejs.org/guides/using-with-vuex.html#mocking-getters)跟随到了T上,但似乎没有用。

我得到标题中提到的错误。

const localVue = createLocalVue()
localVue.use(Vuex)

describe('Navbar.vue', () => {
  let store: any
  let getters: any

  beforeEach(() => {
    getters: {
      isLoggedIn: () => false
    }

    store = new Vuex.Store({
      getters
    })
  })

  it('renders props.title when passed', () => {
    const title = 'Smart Filing'
    const wrapper = shallowMount(Navbar, {
      propsData: { title },
      i18n,
      store,
      localVue,
      stubs: ['router-link']
    })

    expect(wrapper.text()).to.include(title)
  })
})

我正在使用类组件,所以可能与它有关?
@Component({
  props: {
    title: String
  },
  computed: mapGetters(['isLoggedIn'])
})
export default class Navbar extends mixins(Utils) {}

提前致谢。

最佳答案

此处的“ getter ”分配不正确:

  beforeEach(() => {
    getters: {
      isLoggedIn: () => false
    }

    store = new Vuex.Store({
      getters
    })
  })

它应该是getters = {...而不是getters: {...,因为beforeEach的参数是函数而不是对象。

我可以确认它确实正确地写在了文档中。

祝你好运!

关于vue.js - TypeError : Cannot read property 'getters' of undefined,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54526637/

10-10 01:57