Skip to the content.

remind-editor

Remind is a visual framework that supports rendering and editing tree-structured data in various layout types.

查看中文版本

Demo

Complete DEMO

base

snapshot

snapshot

npm run start

Docker Start

docker run -d -v your_data_path:/reminds -p 7001:7001 mizydocker/remind

Install

npm i remind-editor --save

Usage

<script src="https://unpkg.com/remind-editor@${version}/dist/remind.js"></script>
npm i remind-editor --save
import Remind from 'remind-editor'

Start

import Remind from 'remind-editor';

new Remind(document.getElementById("root"),{
	data:{} // data
})

Export Data

remind.page.toJSON()

查看中文版本