多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
> 此项目的写法,false为缓存,true为不缓存 ``` <keep-alive > <router-view v-if="!this.$route.meta.noCache"></router-view> </keep-alive> <router-view v-if="this.$route.meta.noCache"></router-view> ``` - 需要缓存的列表路由上设置为 ``` { path: '/distributor/cooperating/cooperatinglist/index', name: 'distributorcooperating', meta: { noCache: false // 这个位置进行设置 }, component: _import('distributor/cooperating/cooperatinglist/index') // 合作中的分销商列表 }, ``` - 详情页面的路由 ``` { path: '/distributor/cooperating/cooperatingadd/index', name: 'distributorcooperatingadd', meta: { noCache: true // 这个位置进行设置 }, component: _import('distributor/cooperating/cooperatingadd/index') // 合作中添加合作分销商 }, ``` > 列表页面使用activated进行生命周期的执行 > 详情页面使用created进行生命周期的执行