2018-12-08 02:48:15 -05:00
|
|
|
<template>
|
2018-12-20 00:32:53 -05:00
|
|
|
<section>
|
2023-07-01 12:19:29 -04:00
|
|
|
<nav class="buttons is-centered mb-4 fd-is-square">
|
2023-07-26 02:05:13 -04:00
|
|
|
<router-link
|
|
|
|
v-for="id in index"
|
|
|
|
:key="id"
|
2022-05-29 12:49:00 -04:00
|
|
|
class="button is-small"
|
2023-07-26 02:05:13 -04:00
|
|
|
:to="'#index_' + id"
|
|
|
|
>{{ id }}</router-link
|
|
|
|
>
|
2018-12-20 00:32:53 -05:00
|
|
|
</nav>
|
|
|
|
</section>
|
2018-12-08 02:48:15 -05:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'IndexButtonList',
|
2023-07-26 02:05:13 -04:00
|
|
|
props: ['index']
|
2018-12-08 02:48:15 -05:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2023-07-26 02:05:13 -04:00
|
|
|
<style></style>
|