2020-07-01 07:29:03 +02:00
|
|
|
<template>
|
|
|
|
<section class="section fd-tabs-section">
|
|
|
|
<div class="container">
|
|
|
|
<div class="columns is-centered">
|
|
|
|
<div class="column is-four-fifths">
|
|
|
|
<div class="tabs is-centered is-small">
|
|
|
|
<ul>
|
2022-05-29 18:49:00 +02:00
|
|
|
<router-link
|
|
|
|
v-slot="{ navigate, isActive }"
|
2023-07-15 21:56:44 +02:00
|
|
|
:to="{ name: 'audiobooks-artists' }"
|
2022-05-29 18:49:00 +02:00
|
|
|
custom
|
|
|
|
>
|
2022-02-19 06:39:14 +01:00
|
|
|
<li :class="{ 'is-active': isActive }">
|
2022-02-19 06:18:01 +01:00
|
|
|
<a @click="navigate" @keypress.enter="navigate">
|
2023-06-30 21:41:40 +02:00
|
|
|
<mdicon
|
|
|
|
class="icon is-small"
|
|
|
|
name="account-music"
|
|
|
|
size="16"
|
|
|
|
/>
|
2022-06-04 13:57:08 +02:00
|
|
|
<span v-text="$t('page.audiobooks.tabs.authors')" />
|
2022-02-19 06:18:01 +01:00
|
|
|
</a>
|
|
|
|
</li>
|
2020-07-01 07:29:03 +02:00
|
|
|
</router-link>
|
2022-05-29 18:49:00 +02:00
|
|
|
<router-link
|
|
|
|
v-slot="{ navigate, isActive }"
|
2023-07-15 21:56:44 +02:00
|
|
|
:to="{ name: 'audiobooks-albums' }"
|
2022-05-29 18:49:00 +02:00
|
|
|
custom
|
|
|
|
>
|
2022-02-19 06:39:14 +01:00
|
|
|
<li :class="{ 'is-active': isActive }">
|
2022-02-19 06:18:01 +01:00
|
|
|
<a @click="navigate" @keypress.enter="navigate">
|
2023-06-30 21:41:40 +02:00
|
|
|
<mdicon class="icon is-small" name="album" size="16" />
|
2022-06-04 13:57:08 +02:00
|
|
|
<span v-text="$t('page.audiobooks.tabs.audiobooks')" />
|
2022-02-19 06:18:01 +01:00
|
|
|
</a>
|
|
|
|
</li>
|
2020-07-01 07:29:03 +02:00
|
|
|
</router-link>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'TabsAudiobooks'
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2022-02-19 06:39:14 +01:00
|
|
|
<style></style>
|