<PageTable> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
如果你已经正确注册该组件,但仍然出现这个错误提示,可能是因为在使用该组件的地方,该组件还没有被加载。你可以尝试将该组件的 导入和注册提前,或者使用 vue.component()的 components 选项来注册子组件,确保子组件先于父组件加载。
import PageTable from '../pageTable/pageTable.vue';
Vue.component('PageTable',PageTable)