mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 16:45:43 +00:00
remove console.logs
This commit is contained in:
parent
76c6d25850
commit
1827c61314
4 changed files with 1 additions and 7 deletions
|
@ -30,7 +30,6 @@
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
copied.value = false;
|
copied.value = false;
|
||||||
console.log(copied.value);
|
|
||||||
}, 1000);
|
}, 1000);
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -30,11 +30,9 @@ export function useTheme(): UseTheme {
|
||||||
}
|
}
|
||||||
|
|
||||||
htmlEl.value = document.querySelector("html");
|
htmlEl.value = document.querySelector("html");
|
||||||
console.log(htmlEl.value);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const theme = computed(() => {
|
const theme = computed(() => {
|
||||||
console.log(themeRef.value);
|
|
||||||
return themeRef.value;
|
return themeRef.value;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -16,14 +16,12 @@
|
||||||
const auth = useAuthStore();
|
const auth = useAuthStore();
|
||||||
|
|
||||||
if (auth.self === null) {
|
if (auth.self === null) {
|
||||||
const { data, error } = await api.self();
|
const { data, error } = await api.user.self();
|
||||||
if (error) {
|
if (error) {
|
||||||
navigateTo("/");
|
navigateTo("/");
|
||||||
}
|
}
|
||||||
|
|
||||||
auth.$patch({ self: data.item });
|
auth.$patch({ self: data.item });
|
||||||
|
|
||||||
console.log(auth.self);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const itemsStore = useItemStore();
|
const itemsStore = useItemStore();
|
||||||
|
|
|
@ -66,7 +66,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
console.log(groupToken.value);
|
|
||||||
if (groupToken.value !== "") {
|
if (groupToken.value !== "") {
|
||||||
registerForm.value = true;
|
registerForm.value = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue