feat(projects): 新增BasicLayout布局

This commit is contained in:
Soybean
2022-01-07 00:26:59 +08:00
parent 0c5770dfd2
commit 006467a062
13 changed files with 150 additions and 81 deletions

View File

@ -0,0 +1,14 @@
<template>
<router-view v-slot="{ Component }">
<transition name="fade-slide" mode="out-in" appear>
<component :is="Component" v-if="app.reloadFlag" />
</transition>
</router-view>
</template>
<script setup lang="ts">
import { useAppStore } from '@/store';
const app = useAppStore();
</script>
<style scoped></style>

View File

@ -0,0 +1,3 @@
import GlobalContent from './GlobalContent/index.vue';
export { GlobalContent };