hero

xcrud

基于 element-ui & Vue 实现的用于快速增删改查的组件,是开发后台应用的利器

前往 →

无侵入

在任何 element-ui 前端项目中均可使用,完全无侵入,是对 element-ui 表单和表格的封装

json 配置

去除繁琐的 html,通过 json 配置表单

全局样式

可通过配置修改全局的样式,更好的适配你的项目

# Install

npm install xcrud -S
# or
yarn add xcrud -S

# Getting started

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

import Element from "element-ui";
import "element-ui/lib/theme-chalk/index.css";
import Xcrud from "xcrud";

Vue.use(Element);
Vue.use(Xcrud, {
  // your global theme config
});

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