Files
tango/packages/designer
wwsun 6fc889a161 chore(release): publish
- @music163/tango-context@1.0.0-alpha.3
 - @music163/tango-core@1.0.0-alpha.3
 - @music163/tango-designer@1.0.0-alpha.4
 - @music163/tango-sandbox@1.0.0-alpha.3
 - @music163/tango-setting-form@1.0.0-alpha.3
2023-12-25 11:08:29 +08:00
..
2023-12-19 15:07:44 +08:00
2023-12-25 11:08:29 +08:00
2023-12-25 11:08:29 +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',
});