VUE运行报错:
Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the “name” option.

问题描述:
问题出在组件引入,报错:“未知的自定义组件:-是否正确注册了该组件?对于递归组件,请确保提供“name”选项…”
所以查看组件引入部分代码,
APP 中接收数据代码:
@Override
import { Form ,FormItem} from 'element-ui'
import { Input } from 'element-ui'
//注意这里不能连用
Vue.use(Form)
Vue.use(FormItem)
Vue.use(Input)
}