mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-07 13:03:23 -05:00
47 lines
1.3 KiB
Vue
47 lines
1.3 KiB
Vue
<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>
|
|
<router-link tag="li" to="/settings/webinterface" active-class="is-active">
|
|
<a>
|
|
<span class="">Webinterface</span>
|
|
</a>
|
|
</router-link>
|
|
<router-link tag="li" to="/settings/remotes-outputs" active-class="is-active">
|
|
<a>
|
|
<span class="">Remotes & Outputs</span>
|
|
</a>
|
|
</router-link>
|
|
<router-link tag="li" to="/settings/artwork" active-class="is-active">
|
|
<a>
|
|
<span class="">Artwork</span>
|
|
</a>
|
|
</router-link>
|
|
<router-link tag="li" to="/settings/online-services" active-class="is-active">
|
|
<a>
|
|
<span class="">Online Services</span>
|
|
</a>
|
|
</router-link>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'TabsSettings',
|
|
|
|
computed: {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|