项目作者: smacken

项目描述 :
React Material UI editable list
高级语言: TypeScript
项目地址: git://github.com/smacken/material-editablelist.git
创建时间: 2020-05-19T22:23:15Z
项目社区:https://github.com/smacken/material-editablelist

开源协议:

下载


Material Editable List

Material UI list which is editable to add/edit/delete list items.
Binds to a list or string property

Installation

  1. npm install --save material-editablelist

or

  1. yarn add material-editablelist

Getting Started

import editable list

  1. import { EditableList, EditableString } from 'material-editablelist';

Editable list can bind to either a delimited string, or a list.

  1. <EditableList editList={{list: editItem.primaryFilters, listSeperator: ':'} as EditableString}></EditableList>

Examples