feat: username input and small fixes

This commit is contained in:
2025-09-12 14:14:28 +02:00
parent 923c17840d
commit 615701c8f3
6 changed files with 105 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
import { boot } from 'quasar/wrappers';
import axios from 'axios';
const api = axios.create({
baseURL: "https://localhost:5555"
});
export default boot(({ app }) => {
app.config.globalProperties.$axios = axios;
app.config.globalProperties.$api = api;
});
export { api };