gpt4 book ai didi

typescript - Vue + typescript - TypeError : Object prototype may only be an Object or null: undefined

转载 作者:搜寻专家 更新时间:2023-10-30 20:55:21 25 4
gpt4 key购买 nike

TypeError: Object prototype may only be an Object or null: undefined

我的项目出现了一些错误。我正在使用 vuejs、typescript 和 jest。

这只是简单的代码,我试着 Jest 进行单元测试,但它有一些错误。这是我的测试代码。

///<reference path="../../../../node_modules/@types/jest/index.d.ts"/>
// https://vue-test-utils.vuejs.org/kr/s
import { mount } from "vue-test-utils";
import HelloWorld from './HelloWorld.vue';

describe('[HelloWorld]', function () {
let cmp: any;

beforeEach(() => {
cmp = mount(HelloWorld);
});

it("Check vue instance", () => {
expect(cmp.isVueInstance()).toBeTruthy();
});

it("message is Hello", () => {
expect(cmp.vm.msg).toEqual('Hello!!');
});
});

这是vue文件

   <template>
<div class="hello">
<h1>{{ msg }}</h1>
<img src="/assets/logo.png">
<button @click="clickHandler">
button
</button>
</div>
</template>

<script lang="ts">
import Vue from "vue";
import Component from "vue-class-component";

interface HelloWorldInterface {
msg: string;
clickHandler(): void;
}

@Component({})
export default class HelloWorld extends Vue implements HelloWorldInterface {
msg = "Hello!!";
clickHandler() {
window.alert(this.msg);
}
}
</script>

Here is error logs with picture.

最佳答案

你应该为你的 tsconfig.json 或你自己的 tsconfig 设置 esModuleInterop = true 只是为了 jest

关于typescript - Vue + typescript - TypeError : Object prototype may only be an Object or null: undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48992278/

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