From e8e3a08b7cdf7bdec005741ba5c1e5739b684cd5 Mon Sep 17 00:00:00 2001 From: Janis Date: Wed, 3 Dec 2025 21:58:39 +0100 Subject: [PATCH] feat: FRO-2 Implement Login Component wip --- package.json | 5 +- src/App.vue | 15 ++-- src/main.ts | 7 ++ src/router/index.ts | 6 ++ src/views/LoginView.vue | 150 ++++++++++++++++++++++++++++++++++++++++ 5 files changed, 176 insertions(+), 7 deletions(-) create mode 100644 src/views/LoginView.vue diff --git a/package.json b/package.json index 60a9c6e..25b092f 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,10 @@ "@quasar/extras": "^1.17.0", "quasar": "^2.18.6", "vue": "^3.5.25", - "vue-router": "^4.6.3" + "vue-router": "^4.6.3", + "tsparticles": "~3.9.1", + "@tsparticles/vue3": "~3.0.1", + "bootstrap-vue-next": "~0.40.9" }, "devDependencies": { "@quasar/vite-plugin": "^1.10.0", diff --git a/src/App.vue b/src/App.vue index 7905b05..4ec1052 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,6 +1,7 @@