Vue项目引进ElementUI组件

1、https://blog.csdn.net/Mr_JavaScript/article/details/80741914

  1.1 安装  npm install element-ui -save

  1.2 引用,在原vue项目main.js   new vue()之前加入代码 

  import ElementUI from 'element-ui'
  import 'element-ui/lib/theme-chalk/index.css'
  Vue.use(ElementUI)

2、https://www.cnblogs.com/fubinbin/p/9938528.html

原文地址:https://www.cnblogs.com/qinlongqiang/p/11818514.html