首页 > 解决方案 > [Vue 警告]:未知的自定义元素:- 您是否正确注册了组件?对于递归组件,

问题描述

应用程序.vue

TabBaritem.vue

标签: vue.jscomponentsslot

解决方案


The sub string item should be capitalized to Item :

name:'TabBarItem'

and in App.vue :

import TabBarItem from  ...

...

components:{
 TabBarItem,TabBar
}

because tab-bar-item expects a component named TabBarItem, it converts PascalCase to kebab-case


推荐阅读