zxl #182

Merged
zhangxuelin merged 2 commits from zxl into main 2024-12-25 17:30:15 +08:00
1 changed files with 7 additions and 3 deletions
Showing only changes of commit 5686669563 - Show all commits

View File

@ -507,6 +507,11 @@ const backToCenter = () => {
app.scrollToCenter()
}
const cancelActiveElement = () =>{
app.cancelActiveElement()
}
//
const showFit = () => {
let elementList = app.elements.elementList
@ -700,8 +705,6 @@ const getCanvasBlob = async () =>{
})
}
watch(() => props.data, (newVal) => {
if (newVal) {
setCanvasData(newVal)
@ -791,7 +794,8 @@ defineExpose({
getCanvasJson,
getCanvasBase64,
setCanvasData,
getCanvasBlob
getCanvasBlob,
cancelActiveElement
})
</script>