2018-12-08 02:48:15 -05:00
|
|
|
<template>
|
2018-12-20 00:32:53 -05:00
|
|
|
<section>
|
2022-02-19 00:39:14 -05:00
|
|
|
<nav class="buttons is-centered fd-is-square" style="margin-bottom: 16px">
|
2022-05-29 12:49:00 -04:00
|
|
|
<a
|
2023-06-04 07:54:01 -04:00
|
|
|
v-for="char in index"
|
2022-05-29 12:49:00 -04:00
|
|
|
:key="char"
|
|
|
|
class="button is-small"
|
|
|
|
@click="nav(char)"
|
|
|
|
v-text="char"
|
|
|
|
/>
|
2018-12-20 00:32:53 -05:00
|
|
|
</nav>
|
|
|
|
</section>
|
2018-12-08 02:48:15 -05:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'IndexButtonList',
|
|
|
|
props: ['index'],
|
|
|
|
methods: {
|
2023-06-07 15:25:54 -04:00
|
|
|
nav(id) {
|
2022-02-19 00:18:01 -05:00
|
|
|
this.$router.push({ hash: '#index_' + id })
|
2018-12-08 02:48:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2022-02-19 00:39:14 -05:00
|
|
|
<style></style>
|