bill 1 년 전
부모
커밋
4e6af2c9f5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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>