vue如何实现路由缓存

(以下示例皆是以vue3+vite+ts项目为例)

场景一:所有路由都可以进行缓存

在渲染路由视图对应的页面进行缓存设置,代码如下:

html 复制代码
<template>
  <router-view v-slot="{ Component, route }">
    <transition name="router-fade" mode="out-in">
      <keep-alive>
        <component :is="Component" :key="route.fullPath" />
      </keep-alive>
    </transition>
  </router-view>
</template>

<router-view>:用来渲染当前路由对应的视图。

  • v-slot :解构 router-view 的插槽属性来访问当前路由的组件(Component)和路由对象(route)。

<transition>:用于实现页面路由切换时的过渡动画效果,可省略。

  • name="router-fade":定义过渡动画类名为router-fade,如router-fade-enter-active
  • mode="out-in":设置过渡模式为先出后进,即新组件先渲染,旧组件再离开

切记:虽然vue3支持一个组件中有多个根节点,但是<transition>不支持多个根节点,否者页面无法正确显示,例如:打开缓存过的页面会出现白屏现象。

<keep-alive>:用来缓存路由组件。

<component>:用来动态渲染组件。

  • :is="Component":表示要渲染的组件由 Component 变量决定。
  • :key="route.fullPath":为组件添加唯一的键值,确保路由发生变化时触发组件的重新渲染。

场景二:动态设置可以缓存的路由

  1. 在router中配置keepAlive,设置支持缓存的页面,例如
javascript 复制代码
import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router';
import Layout from '../views/layout/index.vue';
const routes: Array<RouteRecordRaw> = [
  {
    path: '/',
    name: 'Layout',
    component: Layout,
    meta:{
      keepAlive:true //支持缓存
    }
  },
  {
    path: '/about',
    name: 'About',
    component: () => import("../views/about/index.vue"),
    meta:{
      keepAlive:false //不支持缓存
    }
  },
];

const router = createRouter({
  history: createWebHistory(),
  routes
});

export default router;
  1. 在支持缓存的对应页面中设置name ,此name必须于路由中设置的name一致。
javascript 复制代码
<script setup lang="ts">
// 使用 defineOptions 设置组件的 name 属性
defineOptions({
  name: 'Layout'
});
</script>

3.在渲染路由视图对应的页面进行缓存设置,代码如下:

(相比场景一,多了:include="cachedViews"的设置)

javascript 复制代码
<template>
  <router-view v-slot="{ Component, route }">
    <transition name="router-fade" mode="out-in">
      <keep-alive :include="cachedViews">
        <component :is="Component" :key="route.fullPath" />
      </keep-alive>
    </transition>
  </router-view>
</template>
<script setup lang="ts">
import {ref,watchEffect} from "vue";
import { useRoute } from 'vue-router';
// 定义缓存的视图数组
const cachedViews=ref<string[]>([])
const route = useRoute();
// 监听路由变化
watchEffect(() => {
  const name = route.name as string;
  if (route.meta.keepAlive) {
    if (!cachedViews.value.includes(name)) cachedViews.value.push(name);
  } else {
    const index = cachedViews.value.indexOf(name);
    if (index > -1)cachedViews.value.splice(index, 1);
  }
});
</script>
相关推荐
web1350858863524 分钟前
前端node.js
前端·node.js·vim
m0_5127446425 分钟前
极客大挑战2024-web-wp(详细)
android·前端
若川34 分钟前
Taro 源码揭秘:10. Taro 到底是怎样转换成小程序文件的?
前端·javascript·react.js
潜意识起点1 小时前
精通 CSS 阴影效果:从基础到高级应用
前端·css
奋斗吧程序媛1 小时前
删除VSCode上 origin/分支名,但GitLab上实际上不存在的分支
前端·vscode
IT女孩儿1 小时前
JavaScript--WebAPI查缺补漏(二)
开发语言·前端·javascript·html·ecmascript
m0_748256563 小时前
如何解决前端发送数据到后端为空的问题
前端
请叫我飞哥@3 小时前
HTML5适配手机
前端·html·html5
@解忧杂货铺5 小时前
前端vue如何实现数字框中通过鼠标滚轮上下滚动增减数字
前端·javascript·vue.js
F-2H7 小时前
C语言:指针4(常量指针和指针常量及动态内存分配)
java·linux·c语言·开发语言·前端·c++