pass routeId to route component
This commit is contained in:
parent
2637d5666b
commit
732744d69a
1 changed files with 3 additions and 0 deletions
|
@ -25,6 +25,7 @@ const ready = ref(false)
|
||||||
const firstInit = ref(false)
|
const firstInit = ref(false)
|
||||||
const acknowledged = ref(false)
|
const acknowledged = ref(false)
|
||||||
const storageId = ref('')
|
const storageId = ref('')
|
||||||
|
const routeId = ref('')
|
||||||
const warning = ref({} as WarningModal)
|
const warning = ref({} as WarningModal)
|
||||||
|
|
||||||
const determineWarning = () => {
|
const determineWarning = () => {
|
||||||
|
@ -77,6 +78,7 @@ const refresh = async () => {
|
||||||
currentRoute = getCurrentRoute()
|
currentRoute = getCurrentRoute()
|
||||||
routeConfig = routeStore._routes[currentRoute.path]
|
routeConfig = routeStore._routes[currentRoute.path]
|
||||||
storageId.value = `${globalConfig.id}::${currentRoute.path}`
|
storageId.value = `${globalConfig.id}::${currentRoute.path}`
|
||||||
|
routeId.value = routeStore._routes[currentRoute.path].id
|
||||||
|
|
||||||
determineWarning()
|
determineWarning()
|
||||||
determineStylesheets(routeConfig.stylesheetUrls)
|
determineStylesheets(routeConfig.stylesheetUrls)
|
||||||
|
@ -140,6 +142,7 @@ onMounted(async () => {
|
||||||
)
|
)
|
||||||
Transition
|
Transition
|
||||||
component(
|
component(
|
||||||
|
:id='routeId'
|
||||||
:is='Component'
|
:is='Component'
|
||||||
)
|
)
|
||||||
#main-entry(
|
#main-entry(
|
||||||
|
|
Loading…
Add table
Reference in a new issue