Unknown custom element: <el-tabs> - did you register the component correctly? For recursive components, make sure to vue.runtime.esm.js?c320:619provide the "name" option.
mad
从官网上扒下来的 一模一样就是一直报错
然后一直百度 百度上的答案五花八门
没一个有用的
草!!!!!
这个原因就是你没有在项目中引入element-ui 所以你用它的组件会报错
第一步
npm i element-ui -S
第二步
在main.js里面加入
import ElementUI from 'element-ui'; import 'element-ui/lib/theme-chalk/index.css'; Vue.use(ElementUI);