Unknown custom element: <el-button>
通过vue add element
引入的vue-cli-plugin-element
vue create my-appcd my-app
vue add element
提示错误 Unknown custom element: <el-button> - did you register the component correctly
?应该怎么修改?
vue-cli的版本,vue的版本是2.x
回答
你只是安装了依赖 但是没有引入组件
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
Vue.use(ElementUI);
也可以按需引入 plugins里面应该有element.js
以上是 Unknown custom element: <el-button> 的全部内容, 来源链接: utcz.com/a/101889.html