mirror of
https://github.com/owntone/owntone-server.git
synced 2025-07-18 05:02:47 -04:00
34 lines
703 B
Vue
34 lines
703 B
Vue
<template>
|
|
<control-tab-list :links="links" />
|
|
</template>
|
|
|
|
<script>
|
|
import ControlTabList from '@/components/ControlTabList.vue'
|
|
|
|
export default {
|
|
name: 'TabsAudiobooks',
|
|
components: { ControlTabList },
|
|
computed: {
|
|
links() {
|
|
return [
|
|
{
|
|
icon: 'account-music',
|
|
key: 'page.audiobooks.tabs.authors',
|
|
to: { name: 'audiobook-artists' }
|
|
},
|
|
{
|
|
icon: 'album',
|
|
key: 'page.audiobooks.tabs.audiobooks',
|
|
to: { name: 'audiobook-albums' }
|
|
},
|
|
{
|
|
icon: 'speaker',
|
|
key: 'page.audiobooks.tabs.genres',
|
|
to: { name: 'audiobook-genres' }
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
</script>
|