Files
PhaseWeb3-Vue/src/components/Cards/SongCardSmall.vue
Trenton Zimmer 08da5d5da7
Some checks failed
Build / build (push) Has been cancelled
Add Hitchart and Event schedule to game homepage
2025-12-17 17:01:15 -05:00

26 lines
442 B
Vue

<script setup>
import { defineProps } from "vue";
defineProps({
musicData: {
type: Object,
required: true,
},
gameId: {
type: String,
required: true,
},
});
</script>
<template>
<div class="flex mt-3">
<a
class="bg-slate-700 p-2 rounded-xl hover:text-slate-300"
:href="`/games/${gameId}/song/${musicData.id}`"
>
{{ musicData.name }} - {{ musicData.artist }}
</a>
</div>
</template>