版本和地址
- ElementUI 2.15.14 (https://element.eleme.io/)
- 按需引入的插件 babel-plugin-component(1.1.1) https://github.com/ElementUI/babel-plugin-component
安装
npm install element-ui
完整引入(不建议)
这种方式最后打包的源文件很大,造成网络资源的浪费
- main.js
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'//全局引入element-ui
Vue.use(ElementUI)
2) 增加测试代码 tests/ElGlobalTest.vue
<template><el-row><el-button>默认按钮</el-button><el-button type="primary">主要按钮</el-button><el-button type="success">成功按钮</el-button