Files
tango/packages/designer
Wells 253ceca969 chore(release): publish
- @music163/tango-designer@1.2.3
 - @music163/tango-setting-form@1.2.4
 - @music163/tango-ui@1.2.3
2024-05-30 17:05:52 +08:00
..
2024-05-30 17:05:52 +08:00
2024-05-30 17:05:52 +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',
});