2018-12-17 04:35:39 -05:00
|
|
|
<template functional>
|
2018-08-11 01:47:10 -04:00
|
|
|
<div class="media">
|
2018-12-17 04:35:39 -05:00
|
|
|
<div class="media-content fd-has-action is-clipped" @click="listeners.click">
|
|
|
|
<h1 class="title is-6">{{ props.track.title }}</h1>
|
|
|
|
<h2 class="subtitle is-7 has-text-grey"><b>{{ props.track.artist }}</b></h2>
|
|
|
|
<h2 class="subtitle is-7 has-text-grey">{{ props.track.album }}</h2>
|
2018-08-11 01:47:10 -04:00
|
|
|
</div>
|
|
|
|
<div class="media-right">
|
2018-12-15 03:56:09 -05:00
|
|
|
<slot name="actions"></slot>
|
2018-08-11 01:47:10 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
2018-12-15 03:56:09 -05:00
|
|
|
name: 'ListItemTrack',
|
2018-12-17 04:35:39 -05:00
|
|
|
props: ['track']
|
2018-08-11 01:47:10 -04:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|