Commit a6ff88e 1 parent 17e67cf commit a6ff88e Copy full SHA for a6ff88e
File tree 2 files changed +1
-8
lines changed
2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change 10
10
<div
11
11
class =" relative flex h-full w-0 flex-grow flex-col bg-primary-50 xl:h-screen xl:overflow-hidden xl:rounded-l-3xl xl:shadow-2xl"
12
12
>
13
- <RouterView class =" flex flex-1 flex-col" v-model:title = " title " />
13
+ <RouterView v-model:title = " title " class =" flex flex-1 flex-col" />
14
14
</div >
15
15
</div >
16
16
<div
27
27
28
28
<script lang="ts" setup>
29
29
import { ref , watch } from ' vue' ;
30
- import { useRoute , useRouter } from ' vue-router' ;
31
- import { useI18n } from ' vue-i18n' ;
32
30
import WorldMap from ' @/ui/assets/images/worldmap.svg?component' ;
33
31
import { VErrorDialog } from ' @/ui/components/common' ;
34
32
import AppFooter from ' @/ui/components/partials/AppFooter.vue' ;
35
33
import AppMenu from ' @/ui/components/partials/AppMenu.vue' ;
36
34
import AppNavbar from ' @/ui/components/partials/AppNavbar.vue' ;
37
35
import { useAuthUseCase } from ' @/ui/composables/Application' ;
38
36
import { useViewportSize } from ' @/ui/composables/ViewportSize' ;
39
- import type { RouteMetaData } from ' @/ui/model/RouteMetaData' ;
40
37
41
- const route = useRoute ();
42
- const router = useRouter ();
43
- const i18n = useI18n ();
44
38
useViewportSize ();
45
39
const authUseCase = useAuthUseCase ();
46
40
Original file line number Diff line number Diff line change @@ -331,7 +331,6 @@ async function fetchEvent(): Promise<void> {
331
331
}
332
332
333
333
async function onEventChanged() {
334
- console .log (event .value );
335
334
emit (' update:title' , event .value ?.name || ' ' );
336
335
if (! event .value ) {
337
336
return ;
You can’t perform that action at this time.
0 commit comments