|
|
1 年之前 | |
|---|---|---|
| .. | ||
| dist | 1 年之前 | |
| esm | 1 年之前 | |
| lib | 1 年之前 | |
| node_modules | 1 年之前 | |
| src | 1 年之前 | |
| LICENSE | 1 年之前 | |
| README.md | 1 年之前 | |
| package.json | 1 年之前 | |
$ 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.