]> git.ipfire.org Git - pbs.git/commitdiff
frontend: Load all required components for the Login view
authorMichael Tremer <michael.tremer@ipfire.org>
Mon, 7 Jul 2025 10:33:27 +0000 (10:33 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Mon, 7 Jul 2025 10:33:27 +0000 (10:33 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
frontend/src/views/LoginView.vue

index 41b5f457f10c6587d62f6663c0c4b00eaa61efde..461bce35985adca850a39e054571924d30ce0696 100644 (file)
        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<string | null>(null)