|
|
il y a 1 an | |
|---|---|---|
| .. | ||
| dist | il y a 1 an | |
| esm | il y a 1 an | |
| lib | il y a 1 an | |
| node_modules | il y a 1 an | |
| src | il y a 1 an | |
| LICENSE | il y a 1 an | |
| README.md | il y a 1 an | |
| package.json | il y a 1 an | |
$ npm install @antv/gui
import { Canvas } from '@antv/g';
import { Renderer } from '@antv/g-canvas';
import { Button } from '@antv/gui';
// create a canvas
const canvas = new Canvas({
container: 'container',
width: 600,
height: 600,
renderer: new Renderer(),
});
// create a button
const button = new Button({
/* ... */
});
canvas.appendChild(button);
// render it
canvas.render();
$ git clone git@github.com:antvis/gui.git
$ cd gui
$ npm install
$ npm run dev
Then send a pull request after coding.
MIT@AntV.