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 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>
|
||||
|
||||
<template lang="pug">
|
||||
|
@ -21,6 +22,10 @@ li.header-entry
|
|||
v-for='entry in entry.children'
|
||||
:entry='entry'
|
||||
)
|
||||
a(
|
||||
v-else-if='!sameSite'
|
||||
:href='entry.path'
|
||||
) {{ entry.displayName }}
|
||||
router-link(
|
||||
v-else
|
||||
:to='{ name }'
|
||||
|
|
Loading…
Add table
Reference in a new issue