mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
53 lines
988 B
Vue
53 lines
988 B
Vue
<template>
|
|
<div>
|
|
<!--Page Tab links-->
|
|
<div class="card shadow-card z-10" style="padding-bottom: 0; padding-top: 0;">
|
|
<CardNavigation :pages="pages" class="-mx-1" />
|
|
</div>
|
|
|
|
<!--Page Content-->
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import CardNavigation from "../../../components/Admin/CardNavigation";
|
|
|
|
|
|
export default {
|
|
name: 'AppSettings',
|
|
components: {
|
|
CardNavigation,
|
|
},
|
|
data() {
|
|
return {
|
|
pages: [
|
|
{
|
|
title: this.$t('admin_settings.tabs.others'),
|
|
route: 'AppOthers',
|
|
},
|
|
{
|
|
title: this.$t('Login & Registration'),
|
|
route: 'AppSignInUp',
|
|
},
|
|
{
|
|
title: this.$t('admin_settings.tabs.appearance'),
|
|
route: 'AppAppearance',
|
|
},
|
|
{
|
|
title: this.$t('Homepage'),
|
|
route: 'AppIndex',
|
|
},
|
|
{
|
|
title: this.$t('admin_settings.tabs.email'),
|
|
route: 'AppEmail',
|
|
},
|
|
]
|
|
}
|
|
},
|
|
mounted() {
|
|
this.$router.push({name: 'AppOthers'})
|
|
}
|
|
}
|
|
</script>
|