Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leezng/element-patch
An extension package based on vue and element-ui. 一个基于 vue 与 element-ui 的扩展包,提供数据驱动的表单渲染,菜单渲染,表格拖拽,权限控制等功能
https://github.com/leezng/element-patch
component element element-ui renderer vue
Last synced: about 12 hours ago
JSON representation
An extension package based on vue and element-ui. 一个基于 vue 与 element-ui 的扩展包,提供数据驱动的表单渲染,菜单渲染,表格拖拽,权限控制等功能
- Host: GitHub
- URL: https://github.com/leezng/element-patch
- Owner: leezng
- License: mit
- Created: 2017-12-18T13:06:13.000Z (about 7 years ago)
- Default Branch: dev
- Last Pushed: 2022-12-10T18:10:49.000Z (about 2 years ago)
- Last Synced: 2024-05-21T12:43:55.117Z (9 months ago)
- Topics: component, element, element-ui, renderer, vue
- Language: JavaScript
- Homepage: https://leezng.github.io/element-patch/
- Size: 1.91 MB
- Stars: 202
- Watchers: 14
- Forks: 40
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# element-patch
An [element-ui](https://github.com/ElemeFE/element) based extension package. We extend some components, such as Table, Menu, Form, etc., to enrich their features and functions, such as dynamically rendered forms and menus, draggable tables, and more. At the same time, we have added some common components and scenarios, such as tree selectors, to provide a fast solution.
From `el-form-renderer` to `element-patch`, `el-form-renderer` has become a historically independent [branch](https://github.com/leezng/element-patch/tree/el-form-renderer) that will no longer be maintained separately. You can click here to see [how to migration from el-form-renderer](https://leezng.github.io/element-patch/).
## Links
- [Docs](https://leezng.github.io/element-patch/)
- [中文介绍](./README.zh-CN.md)## Quick start
```html
// Step1: Install
// Make sure you have properly installed element-ui and used it correctly.
yarn add element-patch// Step2
import ElementPatch from 'element-patch'
import 'element-patch/index.css'Vue.use(ElementPatch)
```## Features
- Dynamically rendered Form
- Dynamically rendered Menus
- Draggable Table
- Table supporting pagination
- Menu that supports permission control
- Tree selector
- Tag selector
...