allow external links in header

This commit is contained in:
lightling 2024-04-10 18:22:21 -04:00
parent 2a62444036
commit 39276736da

View file

@ -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 }'