From cd6460d121fd478c2d02d9a95a502d1488e0ad6a Mon Sep 17 00:00:00 2001 From: valitovgaziz Date: Sat, 23 Nov 2024 02:01:23 +0500 Subject: [PATCH] Add Search Result and ResultCard components --- spa/src/components/Main.vue | 5 +- spa/src/components/SearchResultCard.vue | 62 +++++++++++++++++++++++++ spa/src/components/SearchResults.vue | 40 ++++++++++++++++ 3 files changed, 106 insertions(+), 1 deletion(-) create mode 100644 spa/src/components/SearchResultCard.vue create mode 100644 spa/src/components/SearchResults.vue diff --git a/spa/src/components/Main.vue b/spa/src/components/Main.vue index 60aa44a..d87387b 100644 --- a/spa/src/components/Main.vue +++ b/spa/src/components/Main.vue @@ -2,12 +2,14 @@
+
diff --git a/spa/src/components/SearchResultCard.vue b/spa/src/components/SearchResultCard.vue new file mode 100644 index 0000000..73da28b --- /dev/null +++ b/spa/src/components/SearchResultCard.vue @@ -0,0 +1,62 @@ + + + + + \ No newline at end of file diff --git a/spa/src/components/SearchResults.vue b/spa/src/components/SearchResults.vue new file mode 100644 index 0000000..0617407 --- /dev/null +++ b/spa/src/components/SearchResults.vue @@ -0,0 +1,40 @@ + + + + + \ No newline at end of file