ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
> 此项目的写法,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进行生命周期的执行