// #图形编辑器 [按中心点缩放]
import { App, Rect } from 'leafer-ui'
import '@leafer-in/editor' // 导入图形编辑器插件
import '@leafer-in/viewport' // 导入视口插件 (可选)
const app = new App({
view: window,
editor: {
around: 'top-left'
}
})
const rect = Rect.one({
editable: true,
fill: '#32cd79',
cornerRadius: 30
}, 50, 50)
app.tree.add(rect)
app.editor.select(rect)