build artist page

+ connect artist page to backend
~ bugs introduced as there are hashing changes in the backend

[will fix later]
This commit is contained in:
geoffrey45
2022-12-03 16:06:26 +03:00
committed by Mungai Njoroge
parent fff2c53801
commit 075765088f
17 changed files with 382 additions and 82 deletions
+2 -2
View File
@@ -16,11 +16,11 @@
<script setup lang="ts">
import { paths } from "../../config";
import { AlbumInfo } from "../../interfaces";
import { Album } from "../../interfaces";
const imguri = paths.images.thumb.large;
defineProps<{
album: AlbumInfo;
album: Album;
}>();
</script>