element-ui插件

element-ui就类似于BootStrap框架,前者是在vue项目中运用,后者是在原生项目中运用,当然也可以在vue项目中运用

环境搭建:

1) 安装:在前端项目根目录下的终端

cnpm install element-ui

2)配置:main.js

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

3)使用:根据官方API接口

原文地址:https://www.cnblogs.com/baohanblog/p/12319768.html