这篇文章主要为大家详细介绍了vue解决使用webpack打包后keep-alive不生效的方法,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
问题是这样的,我使用webpack的npm run dev运行的时候,keep-alive路由缓存是有效的,但是我npm run build,把文件放到实际的项目中去的时候,会有如下的问题:
代码如下:
var menus = [
{
path: '/user',
name: '用户',
component: '/user',
redirect: '/user/index1',
icon: 'fa-bandcamp',
meta: {
keepAlive: false
},
children: [
{ path: 'index1', component: '/user/index1', name: '用户管理1', meta: {keepAlive: true}},
{ path: 'index2', component: '/user/index2', name: '用户管理2', meta: {keepAlive: true}},
]
},{
path: '/system',
name: 'system',
component: '/system',
redirect: '/system/index',
icon: 'fa-superpowers',
noDropdown: true,
meta: {
keepAlive: false
},
children: [
{ path: 'index', component: '/system/index', name: '系统管理', meta: {keepAlive: true}},
]
},
]
我在 /user/index1 和/user/index2 之间做切换的时候路由缓存还是生效的,但是在user和system之间切换的时候就不生效了,解决方法如下,也解释不清楚什么原因,可能生产环境下需要在路由的文件上面做缓存把
代码如下:
module.exports = file => require('@/views/' + file + '.vue')
代码如下:
module.exports = file => () => import('@/views/' + file + '.vue')
代码如下:
import Home from '@/views/home/homeView'
代码如下:
const _import = require('./_import_' + process.env.NODE_ENV);
const Login = _import('index/loginView')
以上这篇vue解决使用webpack打包后keep-alive不生效的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持四海网。
本文来自:http://www.q1010.com/184/5663-0.html
注:关于vue解决使用webpack打包后keep-alive不生效的方法的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:vue.js
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。