diff --git a/public/verify.json b/public/verify.json
index e772824..4587298 100644
--- a/public/verify.json
+++ b/public/verify.json
@@ -1 +1 @@
-{"version":1722474202768}
\ No newline at end of file
+{"version":1722520010238}
\ No newline at end of file
diff --git a/src/views/test/blob/index.vue b/src/views/test/blob/index.vue
new file mode 100644
index 0000000..8db6671
--- /dev/null
+++ b/src/views/test/blob/index.vue
@@ -0,0 +1,18 @@
+
+
+
+
+
diff --git a/src/views/test/download/index.vue b/src/views/test/download/index.vue
index be9df3f..3329f0e 100644
--- a/src/views/test/download/index.vue
+++ b/src/views/test/download/index.vue
@@ -28,8 +28,9 @@ const onDownloadImage = () => {
* * 下载视频
*/
const onDownloadVideo = () => {
- const imageBlob = fetch(video.value).then(res => res.blob());
- imageBlob.then(blob => downloadBlob(blob, 'blob视频.mp4'));
+ fetch(video.value)
+ .then(res => res.blob())
+ .then(blob => downloadBlob(blob, 'blob视频.mp4'));
downloadURI(video.value, 'a标签视频.mp4');
};