4 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
5 p {{ st.tr["Authentication successful!"] }}
9 import { store } from "@/store";
10 import { ajax } from "@/utils/ajax";
22 { token: this.$route.params["token"] },
24 this.st.user.id = res.id;
25 this.st.user.name = res.name;
26 this.st.user.email = res.email;
27 this.st.user.notify = res.notify;
28 localStorage["myname"] = res.name;
29 localStorage["myid"] = res.id;