4 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
6 p {{ st.tr["Authentication successful!"] }}
7 p {{ st.tr["Back to Hall in 3 seconds..."] }}
11 import { store } from "@/store";
12 import { ajax } from "@/utils/ajax";
25 { token: this.$route.params["token"] },
28 this.st.user.id = res.id;
29 this.st.user.name = res.name;
30 this.st.user.email = res.email;
31 this.st.user.notify = res.notify;
32 localStorage["myname"] = res.name;
33 localStorage["myid"] = res.id;
35 this.$router.replace("/");