@easyui/element-ui-pro
v1.0.1
Published
This is an extended ui components library for element-ui
Downloads
1
Maintainers
Readme
element-ui-pro
介绍
基于 Element UI 进行二次封装的扩展组件库
帮助文档
https://blancker.github.io/element-ui-pro-docs/
环境说明
- vue 版本:2.x
- element-ui 版本:2.x
安装
npm i element-ui -s
npm i @easyui/element-ui-pro -s
使用
import Vue from "vue";
import ElementUI from "element-ui";
import ElementUIPro from "@easyui/element-ui-pro";
import "element-ui/lib/theme-chalk/index.css";
import App from "./App.vue";
Vue.use(ElementUI);
Vue.use(ElementUIPro);
new Vue({
render: h => h(App)
}).$mount("#app");