功能介绍:做了一个项目,有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是什么?它的主要作用是什么?
标签: keep-alive, vuejs, vuejs缓存, 缓存
上面是“vuejs前进刷新,后退缓存功能介绍”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_2239.html
workflows工作流
图生图工作流:粉红色梦幻家园comfyui工作流
水晶玉雕巨龙ComfyUI工作流
一个可爱的口袋妖怪ComfyUI工作流
坐落在白雪覆盖的广阔平原上2只可爱的雪豹
梦幻中的一只猫咪ComfyUI工作流
彩色雄鹰玉雕ComfyUI工作流
一只漂亮的孔雀的尾巴完全由披萨制成ComfyUI工作流
一只千纸鹤坐在路上哭泣ComfyUI工作流
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!