74 lines
1.7 KiB
Vue
74 lines
1.7 KiB
Vue
<template>
|
|
<el-config-provider :locale="appStore.setting.locale">
|
|
<el-container>
|
|
<el-aside :width="leftWidth" class="app-left">
|
|
<g-aside></g-aside>
|
|
</el-aside>
|
|
<el-container class="app-container ">
|
|
<el-header class="app-header">
|
|
<g-header></g-header>
|
|
</el-header>
|
|
<div class="header-tags">
|
|
<tags></tags>
|
|
</div>
|
|
|
|
<el-main class="app-main">
|
|
<router-view v-slot="{ Component }">
|
|
<transition mode="out-in" name="el-fade-in-linear">
|
|
<keep-alive :include="[...cachedTags]">
|
|
<component :is="Component"/>
|
|
</keep-alive>
|
|
</transition>
|
|
</router-view>
|
|
</el-main>
|
|
</el-container>
|
|
</el-container>
|
|
</el-config-provider>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { useUserStore } from '@/store/user'
|
|
import { useAppStore } from '@/store/app'
|
|
import { useTagsStore } from '@/store/tags'
|
|
import { ref, computed } from 'vue'
|
|
import Tags from '@/layout/components/tags/index.vue'
|
|
import GAside from '@/layout/components/aside.vue'
|
|
import GHeader from '@/layout/components/header.vue'
|
|
|
|
const appStore = useAppStore()
|
|
const tagStore = useTagsStore()
|
|
|
|
const leftWidth = computed(() => appStore.setting.sideIsCollapse ? '64px' : '210px')
|
|
|
|
const cachedTags = ref([])
|
|
|
|
cachedTags.value = tagStore.cached
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.app-header {
|
|
background-color: #3f454b;
|
|
color: var(--basicWhite);
|
|
display: flex;
|
|
height: 50px;
|
|
}
|
|
|
|
.header-tags {
|
|
height: auto;
|
|
border-bottom: 1px solid #eee;
|
|
display: flex;
|
|
padding: 0;
|
|
}
|
|
|
|
.app-left {
|
|
height: 100%;
|
|
transition: width 0.5s;
|
|
}
|
|
|
|
.app-container {
|
|
min-height: 100vh;
|
|
}
|
|
</style>
|
|
|
|
|