mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-08 05:23:25 -05: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>
|