Element UI报错:Unknown custom element: <el-menu>

2019-05-19 14:58:44 浏览数 (1)

按照教程,重新安装了一遍,初始化项目 Vue框架Element UI教程-安装环境搭建(一) 这个时候,却出现了这样的bug,页面里面的样式也没有显示出来,我表示很纳闷,是什么地方的操作出现了问题了吗?

代码语言:javascript复制
vue.esm.js?efeb:628 [Vue warn]: Unknown custom element: <el-menu> - did you register the component correctly? For recursive components, make sure to provide the "name" option.

found in

---> <Test> at src/components/test.vue
       <App> at src/App.vue
         <Root>

报错原因,忘记注册组件了

解决办法:打开入口文件main.js,添加一下代码即可。

代码语言:javascript复制
import ElementUI from 'element-ui' //element-ui的全部组件
import 'element-ui/lib/theme-chalk/index.css'//element-ui的css
Vue.use(ElementUI) //使用elementUI

再次运行,显示如下,报错解决。


0 人点赞