This commit is contained in:
Bytetrex 2021-04-09 15:55:42 +08:00
parent ac76d704cb
commit 2409e0ea0e
1 changed files with 6 additions and 6 deletions

View File

@ -20,23 +20,23 @@ export default {
Footer,
},
mounted() {
const jwt = localStorage.getItem("token");
const wind = localStorage.getItem("wind404");
const jwt = JSON.parse(localStorage.getItem("token"));
const wind = JSON.parse(localStorage.getItem("wind404"));
if (jwt) {
this.$store.commit("setToken", jwt);
}
Object.assign(axios.defaults, {
headers: { Authorization: this.$store.state.user.token },
});
if (wind) {
this.$store.commit("setWind", wind);
} else {
this.$store.commit("setWind", wind);
}
Object.assign(axios.defaults, {
headers: { Authorization: this.$store.state.user.token },
});
if (this.$store.state.debug) {
this.$buefy.snackbar.open({
message: this.$t("errors.devBuild"),