/** * 页面通用 keepAlive 处理 * * 通过页面重置功能,实现刷新功能 */ export default { // keep-alive用 activated() { // 根据isBack进行刷新 if (!this.$route.meta.isBack) { console.log('初始化') this.init && this.init() } else { console.log('返回') this.regInit && this.regInit() } } }