您的位置:首页 > Web前端 > Vue.js

vue-2.5.16.js:597 [Vue warn]: Unknown custom element: - did you register the component corre

2019-06-02 17:15 861 查看

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

found in

—>

这里,显示你自定义的vue组件没有注册。为你提供一个解决思路,请查看你全局注册中声明注册标签的components是否书写正确,这里很容易发生错误,因为在全局注册时期间出现了两个名为component的单词,但第二个应该在这里加上s,代码如下:

Vue.component('组件名称',{
template:'封装的HTML代码',
components:{
要注册的组件名称,
}
})
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐