想在切换路由的时候把采集的数据发送出去,但是修改vuex的值的时候不生
beforeRouteLeave: (to, from, next) => {
try {
console.log("即将离开旧路由:"+new Date().getTime());
this.$store.commit('GET_HTTPRESPONSETIME', new Date().getTime());
this.closPages();
} catch (error) {
}finally{
next();
}
这样写有什么不对吗?
翻过高山走不出你