mirror of
https://github.com/owntone/owntone-server.git
synced 2025-03-04 07:40:12 -05:00
23 lines
405 B
Vue
23 lines
405 B
Vue
<template>
|
|
<section>
|
|
<nav class="buttons is-centered mb-4 fd-is-square">
|
|
<router-link
|
|
v-for="index in indices"
|
|
:key="index"
|
|
class="button is-small"
|
|
:to="'#index_' + index"
|
|
>{{ index }}</router-link
|
|
>
|
|
</nav>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'IndexButtonList',
|
|
props: { indices: Array }
|
|
}
|
|
</script>
|
|
|
|
<style></style>
|