mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
25 lines
878 B
Vue
25 lines
878 B
Vue
<template>
|
|
<el-container class="layout-container flex-center">
|
|
<Header />
|
|
<el-container class="layout-mian-height-50">
|
|
<Aside />
|
|
<div class="flex-center layout-backtop">
|
|
<TagsView v-if="themeConfig.isTagsview" />
|
|
<Main />
|
|
</div>
|
|
</el-container>
|
|
<el-backtop target=".layout-backtop .el-main .el-scrollbar__wrap"></el-backtop>
|
|
</el-container>
|
|
</template>
|
|
|
|
<script lang="ts" setup name="layoutClassic">
|
|
import { storeToRefs } from 'pinia';
|
|
import { useThemeConfig } from '@/store/themeConfig';
|
|
import Aside from '@/layout/component/aside.vue';
|
|
import Header from '@/layout/component/header.vue';
|
|
import Main from '@/layout/component/main.vue';
|
|
import TagsView from '@/layout/navBars/tagsView/tagsView.vue';
|
|
|
|
const { themeConfig } = storeToRefs(useThemeConfig());
|
|
</script>
|