diff --git a/front/src/pages/find.vue b/front/src/pages/find.vue
new file mode 100644
index 0000000..3f49df8
--- /dev/null
+++ b/front/src/pages/find.vue
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
Результат поиска "{{ name }}"
+
+
Песни
+
+ -
+ {{ song.songName }}
+
+
+
Альбомы
+
+ -
+ {{ album.albumName }}
+
+
+
Исполнители
+
+ -
+ {{ artist.artistName }}
+
+
+
+
+
Поиск не дал результатов
+
+
+
+
+
\ No newline at end of file
diff --git a/front/src/router/index.js b/front/src/router/index.js
index 5813797..046f7ce 100644
--- a/front/src/router/index.js
+++ b/front/src/router/index.js
@@ -1,6 +1,7 @@
import artists from "../pages/artists.vue"
import albums from "../pages/albums.vue"
import songs from "../pages/songs.vue"
+import find from "../pages/find.vue"
import {createRouter, createWebHistory} from "vue-router"
@@ -8,6 +9,7 @@ const routes = [
{path: '/artists', component: artists},
{path: '/albums', component: albums},
{path: '/songs', component: songs},
+ {path: '/find', component: find},
]
const router = createRouter({
diff --git a/src/main/java/ru/ulstu/is/sbapp/Repository/IAlbumRepository.java b/src/main/java/ru/ulstu/is/sbapp/Repository/IAlbumRepository.java
index bfd41fe..26d2714 100644
--- a/src/main/java/ru/ulstu/is/sbapp/Repository/IAlbumRepository.java
+++ b/src/main/java/ru/ulstu/is/sbapp/Repository/IAlbumRepository.java
@@ -12,4 +12,7 @@ public interface IAlbumRepository extends JpaRepository
{
"join a.songs s " +
"group by a.id, a.albumName, s.songName")
List