gpt4 book ai didi

vue.js - 类型错误 : Cannot read property 'getters' of undefined

转载 作者:行者123 更新时间:2023-12-02 04:29:30 36 4
gpt4 key购买 nike

我正在尝试测试一个引用 Vuex 存储的基本 Vue 组件。我以为我遵循了 Vue 的示例( https://vue-test-utils.vuejs.org/guides/using-with-vuex.html#mocking-getters ),但它似乎不起作用。

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

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 时,请确保定义将要使用的变量。

@Component({
props: {
title: String
},
computed: mapGetters(['isLoggedIn'])
})
export default class Navbar extends mixins(Utils) {
isLoggedIn!: boolean <== I did not have this before.
...
}

编辑:此外,我实际上并没有在测试中使用模拟 getter,因此您甚至不需要模拟商店。您需要做的就是在组件上声明该变量。

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

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com