# xcrud

> A simplified crud component based on element-ui & Vue

Latest version **0.4.19** (published 2021-05-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install xcrud
pnpm add xcrud
yarn add xcrud
bun add xcrud
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.4.19 |
| Published | 2021-05-19 |
| First published | 2019-04-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 933.3 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 31 |
| Author | charles |
| Maintainers | vinsoncho, chaoshenlele |
| Keywords | crud, vue, element-ui |

## Links

- npm: https://www.npmjs.com/package/xcrud
- Repository: https://github.com/GoldSubmarine/xcrud
- Homepage: https://github.com/GoldSubmarine/xcrud#readme
- Issues: https://github.com/GoldSubmarine/xcrud/issues
- npm.io page: https://npm.io/package/xcrud

## Dependencies (4)

- [vue](https://npm.io/package/vue.md) ^2.6.11
- [element-ui](https://npm.io/package/element-ui.md) ^2.13.2
- [lodash.merge](https://npm.io/package/lodash.merge.md) ^4.6.2
- [lodash.clonedeep](https://npm.io/package/lodash.clonedeep.md) ^4.5.0

## Recent versions

- 0.4.19 (latest) — 2021-05-19
- 0.4.18 — 2021-04-22
- 0.4.17 — 2021-04-12
- 0.4.16 — 2021-03-24
- 0.4.15 — 2021-03-22
- 0.4.14 — 2021-03-22
- 0.4.13 — 2021-03-22
- 0.4.12 — 2021-03-22
- 0.4.11 — 2021-03-18
- 0.4.10 — 2021-03-18
- 0.4.9 — 2021-03-03
- 0.4.8 — 2021-02-26
- 0.4.7 — 2021-02-26
- 0.4.6 — 2021-01-28
- 0.4.5 — 2020-12-22
- … 40 more at https://npm.io/package/xcrud/versions

## README

<p align="center">
  <img width="200" src="https://cdn.jsdelivr.net/gh/goldsubmarine/cdn@master/blog/home.png">
</p>

# xcrud ![GitHub Actions status | GoldSubmarine/xcrud](https://github.com/GoldSubmarine/xcrud/workflows/deploy/badge.svg)

xcrud 是一个基于 element-ui & Vue 实现快速增删改查的组件，通过 json 配置表单，摆脱繁琐的变量和 html，是开发后台应用的利器。

## Documentation

文档风格模仿 element-ui ，参见 [文档](https://goldsubmarine.github.io/xcrud)

## Install

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

## Getting started

```js
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";
// import Xcrud from "xcrud/package/index.js"; // 源码版，需要配置babel编译Xcrud

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

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

## License

[MIT](http://opensource.org/licenses/MIT)

Copyright (c) 2019-present, charles

---
_Source: https://npm.io/package/xcrud · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
