[Vue warn]: Unknown custom element:报错原因及解决方案

 vue中报错:

vue.common.dev.js:630 [Vue warn]: Unknown custom element: - 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
  }
}

你可能感兴趣的:(Vue,vue报错,[Vue,warn])