vue2 KeepAlive实操

发布时间:2024年01月23日

需求

  • 列表->详情 —缓存列表
  • 详情->列表 — 恢复列表缓存
  • 其他->列表 —不缓存列表
1. 注册eventbus
Vue.prototype.$eventBus = new Vue();
2. 视图文件
<keep-alive :include="cacheList">
	<router-view></router-view>
</keep-alive>
<script>
export default {
	data {
		return {
			cacheList: ['List'],
		}
	},
	mounted() {
		this.$eventBus.$on('clearKeepCache', (flag) => {
            if (flag) {
                this.cacheList = ['List'];
            } else {
                this.cacheList = [];
            }
        });
	}
}
</script>
3.
<script>
export default {
	name: 'List',
	mounted() {
		beforeRouteLeave(to, from, next) {
        	this.$eventBus.$emit('clearKeepCache', to.name === 'Info');
        	next();
    	},
	}
}
</script>
文章来源:https://blog.csdn.net/m0_37285193/article/details/135784294
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。