记一次项目中使用el-image组件报错问题,报错如下:
Unknown custom element: <el-image> - did you register the component correctly?
For recursive components, make sure to provide the "name" option.
查阅资料后发现项目中使用的element版本不支持该组件,查看项目的package.json文件,发现使用的element ui版本为:2.4.6。而el-image组件是在2.8.0引入的
Elemtnt UI更新日志这里可以看到在2.8.0的时候加入了Image组件
解决办法:升级Element UI版本
一、升级element-ui需要先卸载原先的版本文章来源:https://www.toymoban.com/news/detail-758602.html
npm uninstall element-ui
二、然后重新安装element-ui文章来源地址https://www.toymoban.com/news/detail-758602.html
npm i element-ui -S
到了这里,关于使用Element UI图片容器报错 Unknown custom element: <el-image>的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!