From 5d0febf28413f5074d32ec77978e0622964f20bc Mon Sep 17 00:00:00 2001 From: Dhaverd Date: Tue, 3 Jun 2025 23:16:07 +0800 Subject: [PATCH] Thumbnail test --- resources/views/Main.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/resources/views/Main.vue b/resources/views/Main.vue index 0715dc1..0bf4005 100644 --- a/resources/views/Main.vue +++ b/resources/views/Main.vue @@ -14,6 +14,9 @@ Найти Скачать +
+ +
BETA
@@ -34,7 +37,7 @@ export default { fetching: ref(false), downloadAvailable: ref(false), downloadLink: '', - downloadFileName: '', + downloadThumbnail: '', hint: ref(''), error: ref(false), errorText: ref(''), @@ -57,6 +60,7 @@ export default { } else if (responce.data.link){ this.downloadAvailable = true; this.downloadLink = `/api/v1/file/download/${responce.data.link}`; + this.downloadThumbnail = responce.data.thumbnail; } }).catch((error)=>{ this.fetching = false;