mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
111 lines
4.1 KiB
Vue
111 lines
4.1 KiB
Vue
<template>
|
|
<div id="single-page">
|
|
<div id="page-content">
|
|
<MobileHeader :title="$router.currentRoute.meta.title"/>
|
|
<PageHeader :can-back="true" :title="$router.currentRoute.meta.title"/>
|
|
|
|
<div class="content-page">
|
|
|
|
<!--Page Tab links-->
|
|
<div class="menu-list-wrapper horizontal">
|
|
<router-link replace :to="{name: 'AppOthers'}"
|
|
class="menu-list-item link">
|
|
<div class="icon">
|
|
<settings-icon size="17"></settings-icon>
|
|
</div>
|
|
<div class="label">
|
|
{{ $t('admin_settings.tabs.others') }}
|
|
</div>
|
|
</router-link>
|
|
|
|
<router-link replace :to="{name: 'AppAppearance'}"
|
|
class="menu-list-item link">
|
|
<div class="icon">
|
|
<eye-icon size="17"></eye-icon>
|
|
</div>
|
|
<div class="label">
|
|
{{ $t('admin_settings.tabs.appearance') }}
|
|
</div>
|
|
</router-link>
|
|
|
|
<router-link v-if="config.isSaaS" replace :to="{name: 'AppBillings'}"
|
|
class="menu-list-item link">
|
|
<div class="icon">
|
|
<file-text-icon size="17"></file-text-icon>
|
|
</div>
|
|
<div class="label">
|
|
{{ $t('admin_settings.tabs.billings') }}
|
|
</div>
|
|
</router-link>
|
|
|
|
<router-link v-if="config.isSaaS" replace :to="{name: 'AppPayments'}"
|
|
class="menu-list-item link">
|
|
<div class="icon">
|
|
<credit-card-icon size="17"></credit-card-icon>
|
|
</div>
|
|
<div class="label">
|
|
{{ $t('admin_settings.tabs.payments') }}
|
|
</div>
|
|
</router-link>
|
|
|
|
<router-link v-if="config.isSaaS" replace :to="{name: 'AppIndex'}" class="menu-list-item link">
|
|
<div class="icon">
|
|
<home-icon size="17"></home-icon>
|
|
</div>
|
|
<div class="label">
|
|
Homepage
|
|
</div>
|
|
</router-link>
|
|
|
|
<router-link replace :to="{name: 'AppEmail'}"
|
|
class="menu-list-item link">
|
|
<div class="icon">
|
|
<mail-icon size="17"></mail-icon>
|
|
</div>
|
|
<div class="label">
|
|
{{ $t('admin_settings.tabs.email') }}
|
|
</div>
|
|
</router-link>
|
|
</div>
|
|
|
|
<!--Router Content-->
|
|
<router-view/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {UsersIcon, SettingsIcon, Trash2Icon, EyeIcon, FileTextIcon, CodeIcon, MailIcon, CreditCardIcon, HomeIcon} from 'vue-feather-icons'
|
|
import MobileHeader from '@/components/Mobile/MobileHeader'
|
|
import SectionTitle from '@/components/Others/SectionTitle'
|
|
import PageHeader from '@/components/Others/PageHeader'
|
|
import {mapGetters} from 'vuex'
|
|
|
|
export default {
|
|
name: 'AppSettings',
|
|
components: {
|
|
HomeIcon,
|
|
CreditCardIcon,
|
|
CodeIcon,
|
|
MailIcon,
|
|
FileTextIcon,
|
|
EyeIcon,
|
|
UsersIcon,
|
|
Trash2Icon,
|
|
SettingsIcon,
|
|
SectionTitle,
|
|
MobileHeader,
|
|
PageHeader,
|
|
},
|
|
computed: {
|
|
...mapGetters(['config']),
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '@assets/vue-file-manager/_variables';
|
|
@import '@assets/vue-file-manager/_mixins';
|
|
</style>
|