add download link; update player and pages layout

This commit is contained in:
bkfox
2022-10-07 16:15:32 +02:00
parent a24afd114e
commit 156b0afcb9
16 changed files with 13000 additions and 145 deletions

View File

@ -1,5 +1,5 @@
<template>
<div>
<div class="playlist">
<slot name="header"></slot>
<ul :class="listClass">
<li v-for="(item,index) in items" :class="itemClass" @click="!hasAction('play') && select(index)"
@ -9,9 +9,9 @@
:data="item" :index="index" :set="set" :player="player_"
@togglePlay="togglePlay(index)"
:actions="actions">
<template v-slot:actions="{}">
<template v-slot:extra-right="{}">
<button class="button" v-if="editable" @click.stop="remove(index,true)">
<span class="icon is-small"><span class="fa fa-minus"></span></span>
<span class="icon is-small"><span class="fa fa-close"></span></span>
</button>
</template>
</ASoundItem>