调整下载教程的文件名

This commit is contained in:
X1627315083
2024-07-08 17:04:32 +08:00
parent e9888e706a
commit 28ffa57fde
2 changed files with 6 additions and 7 deletions

View File

@@ -300,7 +300,7 @@ export default defineComponent({
// showViewVideo('https://code-create.com.hk/wp-content/uploads/2022/11/aida_video.mp4')
const a = document.createElement('a');
a.href = url;
a.download = 'presentation.pptx'; // 下载的文件名
a.download = 'aida_3.0-Manual.pptx'; // 下载的文件名
document.body.appendChild(a);
a.click();
},