vue中报错:
vue.common.dev.js:630 [Vue warn]: Unknown custom element: <video-pagination> - did you register the component correctly? For recursive components, make sure to provide the "name" option.

原因是标签的组件没有引入,在components中引入一下就可以
import VideoPagination from '@src/view/VideoPagination'
export default {
name: '',
components: {
VideoPagination
}
}
6782

被折叠的 条评论
为什么被折叠?



