Initial commit

This commit is contained in:
Mindboost
2025-07-01 10:53:26 +00:00
commit 38050e5c69
416 changed files with 48708 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<template>
<div v-if="spotifyUri">
<iframe
:src="spotifyEmbedUrl"
width="100%"
height="380"
frameborder="0"
allowtransparency="true"
allow="encrypted-media"
/>
</div>
</template>
<script>
export default {
props: {
spotifyUri: {
type: String,
default: ''
}
},
computed: {
spotifyEmbedUrl () {
return `https://open.spotify.com/embed/${this.spotifyUri}`
}
}
}
</script>