web建站教程
  1. 首页
  2. vuejs
  3. js
  4. 好玩
  5. AIGC工具
  6. 前端知识
  7. 百度echarts
  8. 更多
    php入门
    nodejs
    mockjs
    reactjs
    mysql
    wordpress
    织梦cms
    帝国cms
    git教程
    IT知识
    模板大全
    休息站
    手机应用

vuejs前进刷新,后退缓存功能介绍

779 ℃

功能介绍:做了一个项目,有7、8个页面,想实现前进刷新,后退缓存,最后用了keep-alive的一个组件方法。

复制代码npm install v-keep-alive-chain
  • 1

1、main.js

复制代码import { mergeBeforeEachHook, VKeepAliveChain } from 'v-keep-alive-chain'
 
Vue.use(VKeepAliveChain, {
  key: 'cacheTo' // 可选的 默认为cacheTo
})
 
// 如果你没有注册过beforeEach
router.beforeEach(mergeBeforeEachHook())
 
// 如果有注册beforeEach
router.beforeEach(mergeBeforeEachHook((to, from, next) => {
  next()
}))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

2、App.vue

复制代码<keep-alive>
  <router-view v-if="$route.meta.keepAlive"/>
</keep-alive>
<VKeepAliveChain>
  <router-view v-if="!$route.meta.keepAlive"/>
</VKeepAliveChain>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

3、router.js

复制代码[
  {
    path: '/list',
    name: 'list',
    meta: {
      cacheTo: ['info']
    }
    // ...
  },
  {
    path: '/info',
    name: 'info',
    // ...
  }
]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

来源:https://www.npmjs.com/package/v-keep-alive-chain

HTTP协议中的Keep-Alive有什么问题?如何避免Keep-Alive问题?

什么是HTTP协议中的连接管理?HTTP协议有哪些连接管理策略?

HTTP协议中的HTTP Keep-Alive是什么?它的主要作用是什么?

Vue项目中如何使用keep-alive方法

vuejs简单介绍vue安装和卸载方法

标签: keep-alive, vuejs, vuejs缓存, 缓存

上面是“vuejs前进刷新,后退缓存功能介绍”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。

当前网址:https://ipkd.cn/webs_2239.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

当前位置: 网站首页 > vuejs
本文共计717个字,预计阅读时长5分钟
生活小工具,收录了80多款小工具
上一篇: 基于JavaScrip的web动画库——GSAP
下一篇: 免费商用中文字体——优设鲨鱼菲特健康体
回到顶部
x 打工人ai神器