快速上手

安装

确保你已安装了 Node.jsopen in new window

npm install leafer-ui

你也可以使用以下方式安装,推荐速度更快的 pnpmopen in new window

pnpm add leafer-ui

yarn add leafer-ui

体验

创建一个交互应用,可以缩放平移视图、拖拽矩形。

import { Leafer, Rect } from 'leafer-ui'

const leafer = new Leafer({ view: window })

const rect = new Rect({
  x: 100,
  y: 100,
  width: 200,
  height: 200,
  fill: '#32cd79',
  draggable: true,
})

leafer.add(rect)