From 3c3e2ae6623162a718454257c5a19b8db2080c8b Mon Sep 17 00:00:00 2001 From: Harald Bamberger Date: Fri, 11 Apr 2025 16:53:39 +0200 Subject: [PATCH] add name to studentenverwaltung app --- public/js/apps/Studentenverwaltung.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/js/apps/Studentenverwaltung.js b/public/js/apps/Studentenverwaltung.js index a22f1f187..bef605a10 100644 --- a/public/js/apps/Studentenverwaltung.js +++ b/public/js/apps/Studentenverwaltung.js @@ -34,7 +34,9 @@ const router = VueRouter.createRouter({ ] }); -const app = Vue.createApp(); +const app = Vue.createApp({ + name: 'StudentenverwaltungApp' +}); app .use(router)