报错

chunk-vendors.js:2128 [Vue warn]: Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the “name” option.未知自定义元素:-您是否正确注册了组件?对于递归组件,请确保提供“name”选项
在这里插入图片描述

原因

未注册el组件

解决办法
  1. 下载elementUI
npm i element-ui -S
  1. 引入
    打开main.js添加三行代码
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
Vue.use(ElementUI);

在这里插入图片描述

  1. 运行成功
    在这里插入图片描述
Logo

前往低代码交流专区

更多推荐