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

 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
  }
}

 


版权声明:本文为Misnice原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。