SyntaxSquad/DADProject#9 feat: Added profile change and name/password changes.

This commit is contained in:
AfonsoCMSousa
2025-12-23 18:21:04 +00:00
parent 29fc78c9f5
commit b82b4d5b59
4 changed files with 572 additions and 86 deletions
+1 -4
View File
@@ -1,7 +1,6 @@
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import { io } from 'socket.io-client'
import { useAuthStore } from '@/stores/auth'
import App from './App.vue'
import router from './router'
@@ -21,7 +20,5 @@ app.provide('apiBaseURL', `http://${apiDomain}/api`)
app.use(createPinia())
app.use(router)
const authStore = useAuthStore()
authStore.initAuth()
app.mount('#app')