Vue退出功能的实现
Vue退出功能的实现基于token的方式实现退出比较简单,只要销毁本地的token即可。这样后续的请求就不会携带token,必须重新登录生成一个新的token之后才可以访问页面。//清空tokenwindow.sessionStorage.clear();//跳转到登录页this.$router.push("/login");<template> <div> <el-button type=&quo