From: Michael Tremer Date: Mon, 7 Jul 2025 10:33:27 +0000 (+0000) Subject: frontend: Load all required components for the Login view X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cefc836c3383bd32bc548371795e22dc00db1d05;p=pbs.git frontend: Load all required components for the Login view Signed-off-by: Michael Tremer --- diff --git a/frontend/src/views/LoginView.vue b/frontend/src/views/LoginView.vue index 41b5f457..461bce35 100644 --- a/frontend/src/views/LoginView.vue +++ b/frontend/src/views/LoginView.vue @@ -14,8 +14,10 @@ const auth = useAuth(); // Import components + import Container from "@/components/Container.vue"; import Icon from "@/components/Icon.vue"; - import Notification from "../components/Notification.vue" + import Notification from "@/components/Notification.vue"; + import Section from "@/components/Section.vue"; // Error string shown to the user in case something went wrong const error = ref(null)