mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-08-09 05:54:34 +02:00
Enable the Vue 3 front-end
This commit is contained in:
45
resources/js/layouts/SettingTabs.vue
Normal file
45
resources/js/layouts/SettingTabs.vue
Normal file
@ -0,0 +1,45 @@
|
||||
<script setup>
|
||||
const tabs = ref([
|
||||
{
|
||||
'name' : 'settings.options',
|
||||
'view' : 'settings.options',
|
||||
'id' : 'lnkTabOptions'
|
||||
},
|
||||
{
|
||||
'name' : 'settings.account',
|
||||
'view' : 'settings.account',
|
||||
'id' : 'lnkTabAccount'
|
||||
},
|
||||
{
|
||||
'name' : 'settings.oauth',
|
||||
'view' : 'settings.oauth.tokens',
|
||||
'id' : 'lnkTabOAuth'
|
||||
},
|
||||
{
|
||||
'name' : 'settings.webauthn',
|
||||
'view' : 'settings.webauthn.devices',
|
||||
'id' : 'lnkTabWebauthn'
|
||||
},
|
||||
])
|
||||
|
||||
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>
|
Reference in New Issue
Block a user