You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { useTagsViewStore } from '@/store/modules/tagsView'
|
|
|
|
|
import { computed } from 'vue'
|
|
|
|
|
|
|
|
|
|
const tagsViewStore = useTagsViewStore()
|
|
|
|
|
|
|
|
|
|
const getCaches = computed((): string[] => {
|
|
|
|
|
return tagsViewStore.getCachedViews
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<section class="p-[var(--app-content-padding)] w-[100%]">
|
|
|
|
|
<router-view>
|
|
|
|
|
<template #default="{ Component, route }">
|
|
|
|
|
<keep-alive :include="getCaches">
|
|
|
|
|
<component :is="Component" :key="route.fullPath" />
|
|
|
|
|
</keep-alive>
|
|
|
|
|
</template>
|
|
|
|
|
</router-view>
|
|
|
|
|
</section>
|
|
|
|
|
</template>
|