Version 1.0.0 - Frontend

This commit is contained in:
2025-08-29 00:22:08 +02:00
parent b5dc2a9e37
commit 01b089f1f6
83 changed files with 5613 additions and 245 deletions

View File

@@ -7,12 +7,17 @@ import { useGlobalStore } from '@/stores/globalStore';
import { useUserStore } from '@/stores/userStore';
import Button from '@/components/UI/Button.vue';
import ReturnHomeButton from '@/components/Widget/ReturnHomeButton.vue';
import { ref } from 'vue';
import { ref, onMounted } from 'vue';
import ServerListItem from '@/components/Widget/Server/ServerListItem.vue';
import Info from '@/components/UI/Info.vue';
import Account from '@/components/Layout/Account.vue';
const globalStore = useGlobalStore();
onMounted(() => {
document.title = "Mes Serveurs - Subsonics";
});
const userStore = useUserStore();
console.log("Last route:", globalStore.lastRoute);
const router = useRouter();
@@ -37,6 +42,7 @@ function inviteSubsonics() {
window.open(botInviteUrl.value, '_blank', `popup,width=600,height=600,left=${(window.innerWidth - 600) / 2},top=${(window.innerHeight - 600) / 2}`);
}
// Vérifier RaphX pourquoi ca plante !
</script>