Initial commit: public frontend for GameNo.

Vue 3 + Vite student-facing app with routing, Pinia state, and API integration.
This commit is contained in:
2026-08-09 04:18:09 +02:00
commit a9135bfa09
32 changed files with 5394 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
import axiosInstance from './axiosInstance'
export const classesApi = {
getMyClasses: (params = {}) => axiosInstance.get('/classes/user/my-classes', { params })
}