解决keep-alive缓存问题

来源:互联网 发布:大富豪棋牌源码架设 编辑:程序博客网 时间:2024/06/05 10:56
data () {    return {      keyword:'',    }  },deactivated() {    console.log('deactivated');    if (this.keyword !== this.$route.params.key){      this.$destroy()    }  },