[web] Rename indexList to indices

This commit is contained in:
Alain Nussbaumer
2024-02-27 16:27:37 +01:00
parent 062a98b2a8
commit c94b905d72
14 changed files with 24 additions and 24 deletions

View File

@@ -2,11 +2,11 @@
<section>
<nav class="buttons is-centered mb-4 fd-is-square">
<router-link
v-for="id in index"
:key="id"
v-for="index in indices"
:key="index"
class="button is-small"
:to="'#index_' + id"
>{{ id }}</router-link
:to="'#index_' + index"
>{{ index }}</router-link
>
</nav>
</section>
@@ -15,7 +15,7 @@
<script>
export default {
name: 'IndexButtonList',
props: ['index']
props: { indices: Array }
}
</script>