first commit

This commit is contained in:
2024-04-08 21:34:02 +08:00
commit a41a7f32ab
223 changed files with 44629 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<template>
<div>
<router-view v-slot="{ Component, route }">
<keep-alive :include="(tabsStore.cacheList as string[])">
<component :is="Component" :key="route.path" />
</keep-alive>
</router-view>
</div>
</template>
<script setup lang="ts">
import { useTabsStore } from '@/stores'
defineOptions({ name: 'ParentView' })
const tabsStore = useTabsStore()
</script>
<style lang="scss" scoped></style>