当前位置: 移动技术网 > IT编程>脚本编程>vue.js > vue解决使用webpack打包后keep-alive不生效的方法

vue解决使用webpack打包后keep-alive不生效的方法

2018年09月21日  | 移动技术网IT编程  | 我要评论

将军太下流,移花接木 4.1,沈阳铁鹰航空俱乐部

问题是这样的,我使用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之间切换的时候就不生效了,解决方法如下,也解释不清楚什么原因,可能生产环境下需要在路由的文件上面做缓存把

在route目录下新建两个文件:

_import_development.js

module.exports = file => require('@/views/' + file + '.vue')

_import_production.js

module.exports = file => () => import('@/views/' + file + '.vue')

原先路由import的时候是这样的:

import home from '@/views/home/homeview'

现在改成这样:

const _import = require('./_import_' + process.env.node_env);
const login = _import('index/loginview')

重新打包运行生效!

以上这篇vue解决使用webpack打包后keep-alive不生效的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持移动技术网。

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网