allow external links in header
This commit is contained in:
parent
2a62444036
commit
39276736da
1 changed files with 5 additions and 0 deletions
|
@ -9,6 +9,7 @@ const props = defineProps<{
|
||||||
|
|
||||||
const routeStore = useRouteStore()
|
const routeStore = useRouteStore()
|
||||||
const name = computed(() => !!(props.entry as any).path ? routeStore._routes[(props.entry as any).path].name : null)
|
const name = computed(() => !!(props.entry as any).path ? routeStore._routes[(props.entry as any).path].name : null)
|
||||||
|
const sameSite = (props.entry as any).path?.startsWith('/')
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
|
@ -21,6 +22,10 @@ li.header-entry
|
||||||
v-for='entry in entry.children'
|
v-for='entry in entry.children'
|
||||||
:entry='entry'
|
:entry='entry'
|
||||||
)
|
)
|
||||||
|
a(
|
||||||
|
v-else-if='!sameSite'
|
||||||
|
:href='entry.path'
|
||||||
|
) {{ entry.displayName }}
|
||||||
router-link(
|
router-link(
|
||||||
v-else
|
v-else
|
||||||
:to='{ name }'
|
:to='{ name }'
|
||||||
|
|
Loading…
Add table
Reference in a new issue