<el-descriptions> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
时间: 2023-11-16 15:57:52 浏览: 151
MPU-6000 and MPU-6050 Register Map and Descriptions.pdf
5星 · 资源好评率100%
这个报错是因为你没有正确注册<el-descriptions>组件,或者你使用的element-ui版本过低。如果你的项目使用的是element-ui 2.15.6之前的版本,那么加载<el-descriptions>组件就会报错。解决办法是将element-ui更新到最新版本即可。你可以使用npm uninstall element-ui和npm i element-ui -S命令来更新element-ui。如果你使用的是git,也可以使用相应的git命令来更新element-ui。如果你已经更新了element-ui但仍然出现这个报错,那么可能是你没有正确注册<el-descriptions>组件或者没有提供"name"选项。请检查你的代码并确保正确注册了<el-descriptions>组件并提供了"name"选项。
阅读全文