Files
tango/packages/designer
wwsun c240c1824b chore(release): publish
- @music163/tango-context@0.2.2
 - @music163/tango-designer@0.5.0
 - @music163/tango-setting-form@0.2.5
 - @music163/tango-ui@0.1.6
2023-10-12 15:24:21 +08:00
..
2023-10-11 23:51:27 -05:00
2023-10-12 15:24:21 +08:00
2023-10-12 15:24:21 +08:00
2023-08-25 11:35:16 +08:00
2023-08-25 09:39:35 +08:00

Tango LowCode Designer

A source code based low-code designer from the NetEase Cloud Music Develop Team.

📄 Usage

Install the low-code designer

npm install @music163/tango-designer

Initialize the low-code designer engine

import { createEngine } form '@music163/tango-designer';

// init designer engine
const engine = createEngine({
  entry: '/src/index.js',
  files: sampleFiles,
  componentPrototypes: prototypes as any,
});

Initialize the drag-and-drop engine

import { DndQuery } form '@music163/tango-designer';

const sandboxQuery = new DndQuery({
  context: 'iframe',
});