owntone-server/web-src/src/components/PlayerButtonPrevious.vue

37 lines
587 B
Vue
Raw Normal View History

<template>
<a @click="play_previous" :disabled="disabled">
<span class="icon"><i class="mdi mdi-skip-backward" :class="icon_style"></i></span>
</a>
</template>
<script>
import webapi from '@/webapi'
export default {
name: 'PlayerButtonPrevious',
props: {
icon_style: String
},
computed: {
disabled () {
return !this.$store.state.queue || this.$store.state.queue.count <= 0
}
},
methods: {
play_previous: function () {
if (this.disabled) {
return
}
webapi.player_previous()
}
}
}
</script>
<style>
</style>