4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 05:06:37 +00:00
AzuraCast/frontend/vue/components/Public/FullPlayer/SongHistoryModal.vue
2022-12-30 08:38:34 -06:00

31 lines
548 B
Vue

<template>
<b-modal
id="song_history_modal"
ref="modal"
size="md"
:title="$gettext('Song History')"
centered
hide-footer
>
<song-history
:show-album-art="showAlbumArt"
:history="history"
/>
</b-modal>
</template>
<script setup>
import SongHistory from './SongHistory';
const props = defineProps({
history: {
type: Array,
default: []
},
showAlbumArt: {
type: Boolean,
default: true
},
});
</script>