| | |
| | | Breadcrumb, |
| | | BuiltinTheme, |
| | | ColorMode, |
| | | Company, |
| | | Content, |
| | | Copyright, |
| | | Custom, |
| | |
| | | label: $t('preferences.general'), |
| | | value: 'general', |
| | | }, |
| | | { |
| | | label: $t('preferences.company.title'), |
| | | value: 'company', |
| | | }, |
| | | ]; |
| | | |
| | | if (showCustomTab.value) { |
| | |
| | | <VbenSegmented |
| | | v-model="activeTab" |
| | | :tabs="tabs" |
| | | scrollable |
| | | :class="{ |
| | | 'sticky-tabs-header': appEnableStickyPreferencesNavigationBar, |
| | | }" |
| | |
| | | /> |
| | | </Block> |
| | | </template> |
| | | <template #company> |
| | | <Block :title="$t('preferences.company.title')"> |
| | | <Company /> |
| | | </Block> |
| | | </template> |
| | | <template #custom> |
| | | <Block :title="customTabTitle"> |
| | | <Custom |