Forked from
funkwhale / funkwhale
7273 commits behind the upstream repository.
-
Bat authored73db8630
TrackPlaylistIcon.vue 672 B
<template>
<button
@click="$store.commit('playlists/chooseTrack', track)"
v-if="button"
:class="['ui', 'button']">
<i class="list icon"></i>
{{ $t('Add to playlist...') }}
</button>
<i
v-else
@click="$store.commit('playlists/chooseTrack', track)"
:class="['playlist-icon', 'list', 'link', 'icon']"
:title="$t('Add to playlist...')">
</i>
</template>
<script>
export default {
props: {
track: {type: Object},
button: {type: Boolean, default: false}
},
data () {
return {
showModal: false
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
</style>