Vue Error in nextTick: "RangeError: Maximum call stack size exceeded"

报错问题如下:

Error in nextTick: "RangeError: Maximum call stack size exceeded",

经过一系列的问题查询,发现问题所在,原来两个组件的name重复了!!!

修改组件名就OK了!

export default {

    name: "main-table",

}

你可能感兴趣的:(Vue Error in nextTick: "RangeError: Maximum call stack size exceeded")