首页
Javascript
Html
Css
Node.js
Electron
移动开发
小程序
工具类
服务端
浏览器相关
前端收藏
其他
关于
公司注册

Unknown custom element:- did you register the component correctly

2018年10月22日 发布 阅读(13572) 作者:Jerman
  1. <!-- app.vue -->
  2. <template>
  3. <div id="app">
  4. <!-- 嵌套路由 -->
  5. <router-view></router-view>
  6. <TabBar></TabBar>
  7. </div>
  8. </template>

报错:

[Vue warn]: Unknown custom element:- did you register the component correctly? For recursive components, make sure to provide the “name” option.

found in

—->at src/app.vue

原因:没注册路由组件

引入并注册vue-router

  1. // 引入路由
  2. import VueRouter from "vue-router"
  3. /**
  4. * 注册路由组件
  5. */
  6. Vue.use(VueRouter);
版权声明:本站文章除特别声明外,均采用署名-非商业性使用-禁止演绎 4.0 国际 许可协议,如需转载,请注明出处