bill 1 year ago
parent
commit
4e6af2c9f5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/view/case/draw/index.vue

+ 1 - 1
src/view/case/draw/index.vue

@@ -149,7 +149,7 @@ const saveHandler = async () => {
 const exportHandler = async () => {
   const { titleShape } = await getStore();
   const blob = await board.value!.export();
-  saveAs(blob, `${titleShape.text}.png`);
+  saveAs(blob, `${titleShape.text}.jpg`);
 };
 </script>