docs:add global api

This commit is contained in:
Hufe921
2023-01-05 19:30:24 +08:00
parent bf93c2991a
commit 3678b7f34b
2 changed files with 27 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
# 全局API
## 使用方式
```javascript
import Editor from "@hufe921/canvas-editor"
const instance = new Editor(container, <IElement[]>data, options)
instance.apiName()
```
## destroy
功能:销毁编辑器
用法:
```javascript
instance.destroy()
```
::: warning
仅销毁编辑器dom及相关事件,菜单栏、工具栏、外部变量等需自行处理。
:::