From 732744d69a4cc9dfacaec4805d8ba65aa7f4c924 Mon Sep 17 00:00:00 2001 From: Lightling Date: Wed, 10 Apr 2024 19:00:44 -0400 Subject: [PATCH] pass routeId to route component --- src/main.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.vue b/src/main.vue index cbb6ab5..7c3bf73 100644 --- a/src/main.vue +++ b/src/main.vue @@ -25,6 +25,7 @@ const ready = ref(false) const firstInit = ref(false) const acknowledged = ref(false) const storageId = ref('') +const routeId = ref('') const warning = ref({} as WarningModal) const determineWarning = () => { @@ -77,6 +78,7 @@ const refresh = async () => { currentRoute = getCurrentRoute() routeConfig = routeStore._routes[currentRoute.path] storageId.value = `${globalConfig.id}::${currentRoute.path}` + routeId.value = routeStore._routes[currentRoute.path].id determineWarning() determineStylesheets(routeConfig.stylesheetUrls) @@ -140,6 +142,7 @@ onMounted(async () => { ) Transition component( + :id='routeId' :is='Component' ) #main-entry(