1.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. 2. 3. 1.2使用 1.2.1table组件使用 <template> <el-table :data="tableData" style="width: 100%"> <el...