mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-26 02:04:52 +01:00
40 lines
1.0 KiB
Vue
40 lines
1.0 KiB
Vue
<script setup>
|
|
const tabs = ref([
|
|
{
|
|
'name' : 'admin.app_setup',
|
|
'view' : 'admin.appSetup',
|
|
'id' : 'lnkTabApp'
|
|
},
|
|
{
|
|
'name' : 'admin.auth',
|
|
'view' : 'admin.auth',
|
|
'id' : 'lnkTabAuth'
|
|
},
|
|
{
|
|
'name' : 'admin.users',
|
|
'view' : 'admin.users',
|
|
'id' : 'lnkTabUsers'
|
|
},
|
|
])
|
|
|
|
const props = defineProps({
|
|
activeTab: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="options-header">
|
|
<ResponsiveWidthWrapper>
|
|
<div class="tabs is-centered is-fullwidth">
|
|
<ul>
|
|
<li v-for="tab in tabs" :key="tab.view" :class="{ 'is-active': tab.view === props.activeTab }">
|
|
<RouterLink :id="tab.id" :to="{ name: tab.view }">{{ $t(tab.name) }}</RouterLink>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</ResponsiveWidthWrapper>
|
|
</div>
|
|
</template> |