feat : working UI for words

This commit is contained in:
2024-12-29 19:34:26 +01:00
parent d49813e776
commit 3830ea84c8
23 changed files with 441 additions and 129 deletions
+15
View File
@@ -0,0 +1,15 @@
import { UserResponseDTO } from "~/netcode/events/dto/userresponse.dto";
export async function fetchUser(id: string) {
const config = useRuntimeConfig();
const data = await useFetch<UserResponseDTO>(config.public.endpoint + `/users/` + id, {
credentials: "include",
}).then(_d => {
if (_d.data.value) {
_d.data.value = new UserResponseDTO(_d.data.value)
}
return _d
})
return data
}