-
-
Notifications
You must be signed in to change notification settings - Fork 581
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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及相关事件,菜单栏、工具栏、外部变量等需自行处理。 | ||
::: |