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-25 05:44:59 -06:00

18 lines
433 B
Vue

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