We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
record/index.vue中实现页面缓存用的 Utils.getLocalStorage,能够生效;但是在 client\src\router\routes.js 中配置 /mock/index 页面增加缓存配置 cache: true 不生效?打印日志发现 第二次进入页面的时候created钩子被再次调用,没找到keep-alive未生效的原因,可否看一下如何处理? { path: '/mock/index', component: () => import(/* webpackChunkName: 'mock' */ 'views/mock/index'), name: 'mock', meta: { title: '回放Mock', cache: true } },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
record/index.vue中实现页面缓存用的 Utils.getLocalStorage,能够生效;但是在 client\src\router\routes.js 中配置 /mock/index 页面增加缓存配置 cache: true 不生效?打印日志发现 第二次进入页面的时候created钩子被再次调用,没找到keep-alive未生效的原因,可否看一下如何处理?
{
path: '/mock/index',
component: () => import(/* webpackChunkName: 'mock' */ 'views/mock/index'),
name: 'mock',
meta: {
title: '回放Mock',
cache: true
}
},
The text was updated successfully, but these errors were encountered: