[web] Rename component ListIndexButtons for more coherence

This commit is contained in:
Alain Nussbaumer
2025-04-01 11:16:34 +02:00
parent 2e4e741e9a
commit 82933f0afb
15 changed files with 289 additions and 296 deletions

View File

@@ -4,7 +4,7 @@
<router-link
v-for="index in indices"
:key="index"
class="button px-2 is-small is-square"
class="button is-small p-2 is-index"
:to="{ hash: `#index_${index}`, query: $route.query }"
>
{{ index }}
@@ -15,13 +15,13 @@
<script>
export default {
name: 'IndexButtonList',
name: 'ListIndexButtons',
props: { indices: { required: true, type: Array } }
}
</script>
<style scoped>
.is-square {
.is-index {
height: 1.75rem;
min-width: 1.75rem;
}