From b495a166268906a66e927f2e233250c2debecc75 Mon Sep 17 00:00:00 2001 From: Book Pauk Date: Tue, 23 Aug 2022 20:09:07 +0700 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=B8=D0=BC=D0=B5?= =?UTF-8?q?=D0=BD=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/components/Search/Search.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/client/components/Search/Search.vue b/client/components/Search/Search.vue index 0690036..0eb25e2 100644 --- a/client/components/Search/Search.vue +++ b/client/components/Search/Search.vue @@ -111,7 +111,7 @@ -
+
{{ item.name }}
@@ -125,13 +125,16 @@
{{ row.title }}
+
+ {{ row.src }} +
- +
@@ -413,7 +416,7 @@ class Search { const rows = []; for (const book of filtered) { - rows.push({key: book.id, title: book.title}); + rows.push({key: book.id, title: book.title, src: book}); } const books = {