Skip to content

Latest commit

 

History

History
 
 

drip-table-generator

Drip Table Generator

English | 简体中文

npm version node yarn document PRs Welcome

Introduction

DripTableGenerator is a visual tool for producing configuration data that meets the JSON Schema standard in order to sent to DripTable for rendering a table and columns.

Getting Start

  1. Install dependencies

    The configuration side depend on the application side, please make sure that drip-table has been installed before installing dependencies.

    yarn

    yarn add drip-table-generator

    npm

    npm install --save drip-table-generator
  2. Import at the entrance of a file

    import DripTableGenerator from 'drip-table-generator';
    import 'drip-table-generator/dist/index.min.css';
  3. Use components in pages

    return <DripTableGenerator />

    Then the configuration side can be rendered normally, as the sample screenshot below:

    drip-table-generator

development

  1. Clone

  2. Install dependencies

    lerna bootstrap
  3. Build project

    lerna run build --stream --scope=@drip/drip-table-generator

For more commands, see DEVELOP .

License

MIT License