2FAuth/resources/js/components/SettingTabs.vue

55 lines
1.6 KiB
Vue
Raw Normal View History

<template>
<div class="options-header">
<responsive-width-wrapper>
<div class="tabs is-centered is-fullwidth">
<ul>
<li v-for="tab in tabs" :key="tab.view" :class="{ 'is-active': tab.view === activeTab }">
<router-link :id="tab.id" :to="{ name: tab.view }">{{ tab.name }}</router-link>
</li>
</ul>
</div>
</responsive-width-wrapper>
</div>
</template>
<script>
export default {
name: 'SettingTabs',
data(){
return {
tabs: [
{
'name' : this.$t('settings.options'),
2022-06-24 09:10:49 +02:00
'view' : 'settings.options',
'id' : 'lnkTabOptions'
},
{
'name' : this.$t('settings.account'),
2022-06-24 09:10:49 +02:00
'view' : 'settings.account',
'id' : 'lnkTabAccount'
},
{
'name' : this.$t('settings.oauth'),
2022-06-24 09:10:49 +02:00
'view' : 'settings.oauth.tokens',
'id' : 'lnkTabOAuth'
},
2022-03-15 14:47:07 +01:00
{
'name' : this.$t('settings.webauthn'),
2022-06-24 09:10:49 +02:00
'view' : 'settings.webauthn.devices',
'id' : 'lnkTabWebauthn'
2022-03-15 14:47:07 +01:00
},
]
}
},
props: {
activeTab: {
type: String,
default: ''
},
},
}
</script>