Vue项目使用ts及插件vue-property-decorator时报错:Uncaught RangeError: Maximum call stack size exceeded

出错原因:

没有定义组件name

name属性

解决方法:

import { Component, Vue } from "vue-property-decorator";
@Component({
    name:'MyTable'
})
export default class Table extends Vue {
}

版权声明:本文为qq_43389779原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/qq_43389779/article/details/112461660