histories are a little messed, will change the logic in the future (techdebt)

This commit is contained in:
Edd
2025-12-30 01:49:39 +00:00
parent c456c9482f
commit 4f391e3638
12 changed files with 726 additions and 239 deletions
+16
View File
@@ -0,0 +1,16 @@
import axios from 'axios'
import { defineStore } from 'pinia'
import { inject } from 'vue'
export const useRegisterStore = defineStore('register', () => {
const API_BASE_URL = inject('apiBaseURL')
const register = async (data) => {
return await axios.post(`${API_BASE_URL}/register`, data)
}
return {
register,
}
})