From 9b3f1c3f9c4cc0a83d910bbf190452ce3a445b42 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Fri, 27 Dec 2024 12:12:24 +0100 Subject: [PATCH] pankow expects root vue element to have id 'app' --- dashboard/index.html | 2 +- dashboard/src/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard/index.html b/dashboard/index.html index 9c4f1e6eb..3565674b6 100644 --- a/dashboard/index.html +++ b/dashboard/index.html @@ -226,7 +226,7 @@
-
+
diff --git a/dashboard/src/index.js b/dashboard/src/index.js index e35575558..f41d4ad4f 100644 --- a/dashboard/src/index.js +++ b/dashboard/src/index.js @@ -16,5 +16,5 @@ import Index from './components/Index.vue'; app.directive('tooltip', tooltip); - app.mount('#vueapp'); + app.mount('#app'); })();