vue 的keep-alive
Vue 实现组件信息的缓存
vue 的keep-alive
当我们在开发vue的项目过程中,避免不了在路由切换到其他的component再返回后该组件数据会重新加载,处理这种情况我们就需要用到keep-alive来缓存vue的组件信息,使其不再重新加载。
一、在app.vue里
<keep-alive><router-view></router-view></keep-alive>
但是这种情况会对所有的组件进行缓存,不能达到单个组件缓存的效果。
那么我们给部分组件加上,实现方法如下:
在app.vue
<pre style="-webkit-tap-highlight-color: transparent; box-sizing: border-box; font-family: Consolas, Menlo, Courier, monospace; font-size: 16px; white-space: pre-wrap; position: relative; line-height: 1.5; color: rgb(153, 153, 153); margin: 1em 0px; padding: 12px 10px; background: rgb(244, 245, 246); border: 1px solid rgb(232, 232, 232);"><!--这里是需要keepalive的--><keep-alive> <router-view v-if="$route.meta.keepAlive"></router-view><keep-alive><!-- 这里不会被keepAlive --><router-view v-if="!$route.meta.keepAlive"></router-view></pre>
二、 在路由的index.js页面里
{ path: '', name: '', component: '', meta: {keepAlive: true} // 这个是需要keepalive的}, { path: '', name: '', component: , meta: {keepAlive: false} // 这是不会被keepalive的}
这就实现了部分组件的缓存功能
如果缓存的组件想要清空数据或者执行初始化方法,在加载组件的时候调用activated钩子函数,如下:
<pre style="-webkit-tap-highlight-color: transparent; box-sizing: border-box; font-family: Consolas, Menlo, Courier, monospace; font-size: 16px; white-space: pre-wrap; position: relative; line-height: 1.5; color: rgb(153, 153, 153); margin: 1em 0px; padding: 12px 10px; background: rgb(244, 245, 246); border: 1px solid rgb(232, 232, 232);"> activated: function () { this.data = ‘’ }</pre>
作者:前端攻城小牛
链接:https://www.jianshu.com/p/bea275718004