mirror of
https://github.com/owntone/owntone-server.git
synced 2025-03-10 03:30:11 -04:00
23 lines
322 B
Vue
23 lines
322 B
Vue
<template>
|
|
<a v-on:click="play_next">
|
|
<span class="icon"><i class="mdi mdi-skip-forward"></i></span>
|
|
</a>
|
|
</template>
|
|
|
|
<script>
|
|
import webapi from '@/webapi'
|
|
|
|
export default {
|
|
name: 'PlayerButtonNext',
|
|
|
|
methods: {
|
|
play_next: function () {
|
|
webapi.player_next()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|