This commit is contained in:
“zouyf” 2024-12-10 11:09:32 +08:00
parent 10a7e73c64
commit 9603406a0b
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ const insertImageElement = (files: FileList) => {
} }
const onhtml2canvas = async (html: HTMLElement) => { const onhtml2canvas = async (html: HTMLElement) => {
const ele = await toPng(html) const ele = await toPng(html);
createImageElement(ele); createImageElement(ele);
} }