Skip to content

akebe/e-admin

Repository files navigation

e-admin

基于 element 封装的即开即用渐进式中后台组件库

📄中文文档 github gitee

Install

npm install e-admin --save

Start

import Vue from 'vue';
import App from './App.vue';
import router from './router';

import ElementUI from 'element-ui';
import ElImageViewer from 'element-ui/packages/image/src/image-viewer';
import 'element-ui/lib/theme-chalk/index.css';

import Ea from 'e-admin';
import 'e-admin/lib/index.css';

Vue.use(ElementUI).use(Ea);
Vue.component(ElImageViewer.name, ElImageViewer);

Vue.config.productionTip = false;

new Vue({
  render: h => h(App),
  router,
}).$mount('#app');

LICENSE

MIT

About

基于element中后台渐进式框架

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published