aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'front-end/src/App.vue')
-rw-r--r--front-end/src/App.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/front-end/src/App.vue b/front-end/src/App.vue
index 2f29fde..ecd9d73 100644
--- a/front-end/src/App.vue
+++ b/front-end/src/App.vue
@@ -3,7 +3,7 @@
<title>{{ metaTile }}</title>
</head>
<!-- Import environment component top level as the entrypoint -->
- <Environment @logout="logout">
+ <Environment @logout="logout()">
<template #main>
<router-view />
</template>
@@ -14,8 +14,8 @@
import { computed } from 'vue';
import { useStore } from './store';
import { storeToRefs } from 'pinia';
-import Environment from './bootstrap/Environment.vue';
import { apiCall } from '@vnuge/vnlib.browser';
+import Environment from './bootstrap/Environment.vue';
const store = useStore()
const { siteTitle, pageTitle } = storeToRefs(store)