Merge pull request 'edit' (#181) from lyc-dev into main

This commit is contained in:
lyc 2024-12-25 17:25:11 +08:00
commit 960ab581c3
1 changed files with 7 additions and 3 deletions

View File

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