mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 22:43:34 -07:00
remove console.logs
This commit is contained in:
parent
2f5190e107
commit
485ebd2e3a
3 changed files with 2 additions and 10 deletions
|
@ -33,7 +33,6 @@ export default {
|
||||||
colors: colors,
|
colors: colors,
|
||||||
};
|
};
|
||||||
let response = await apiReq.put(settingsURLs.updateTheme(themeName), body);
|
let response = await apiReq.put(settingsURLs.updateTheme(themeName), body);
|
||||||
console.log(response.data);
|
|
||||||
return response.data;
|
return response.data;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -99,7 +99,6 @@ export default {
|
||||||
methods: {
|
methods: {
|
||||||
async login() {
|
async login() {
|
||||||
let key = await api.login(this.user.email, this.user.password);
|
let key = await api.login(this.user.email, this.user.password);
|
||||||
console.log(key);
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -85,9 +85,7 @@ export default {
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {},
|
||||||
console.log(this.loggedIn);
|
|
||||||
},
|
|
||||||
computed: {
|
computed: {
|
||||||
loggedIn() {
|
loggedIn() {
|
||||||
return this.$store.getters.getIsLoggedIn;
|
return this.$store.getters.getIsLoggedIn;
|
||||||
|
@ -100,11 +98,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
watch: {
|
|
||||||
loggedIn() {
|
|
||||||
console.log(this.loggedIn);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
openLoginDialog() {
|
openLoginDialog() {
|
||||||
this.$refs.loginDialog.open();
|
this.$refs.loginDialog.open();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue