chore(front): fixes
This commit is contained in:
parent
44fa157278
commit
a3a39c15e4
|
@ -1,5 +1,4 @@
|
|||
<script setup lang="ts">
|
||||
import { useRouter } from 'vue-router'
|
||||
import { computed } from 'vue'
|
||||
import { useStore } from '~/store'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
|
@ -10,7 +9,6 @@ import PlayButton from '~/components/audio/PlayButton.vue'
|
|||
import Card from '~/components/ui/Card.vue'
|
||||
import Link from '~/components/ui/Link.vue'
|
||||
import Spacer from '~/components/ui/Spacer.vue'
|
||||
import Layout from '~/components/ui/Layout.vue'
|
||||
|
||||
import { type Album } from '~/types'
|
||||
|
||||
|
@ -55,7 +53,7 @@ const imageUrl = computed(() => props.album.cover?.urls.original
|
|||
style="overflow: hidden;"
|
||||
>
|
||||
<template
|
||||
v-for="ac in album.artist_credit"
|
||||
v-for="ac in artistCredit"
|
||||
:key="ac.artist.id"
|
||||
>
|
||||
<Link
|
||||
|
|
Loading…
Reference in New Issue