rebuild search route with custom pages for tracks, album, and artists

This commit is contained in:
geoffrey45
2022-10-01 01:30:14 +03:00
committed by Mungai Njoroge
parent 264406aef4
commit 8e258eaf24
20 changed files with 240 additions and 60 deletions
+2 -2
View File
@@ -36,7 +36,7 @@
import SearchInput from "@/components/shared/NavSearchInput.vue";
import { Routes } from "@/composables/enums";
import { subPath } from "@/interfaces";
import { focusElem } from "@/utils";
import { focusElemByClass } from "@/utils";
import { onUpdated } from "vue";
defineProps<{
@@ -44,7 +44,7 @@ defineProps<{
}>();
onUpdated(() => {
focusElem("inthisfolder");
focusElemByClass("inthisfolder");
});
</script>