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

28 lines
454 B
Vue
Raw Normal View History

<template>
<section>
<nav class="buttons is-centered mb-4 fd-is-square">
<a
v-for="char in index"
:key="char"
class="button is-small"
@click="nav(char)"
v-text="char"
/>
</nav>
</section>
</template>
<script>
export default {
name: 'IndexButtonList',
props: ['index'],
methods: {
nav(id) {
2022-02-19 00:18:01 -05:00
this.$router.push({ hash: '#index_' + id })
}
}
}
</script>
<style></style>