Skip to content

Commit 2a7422b

Browse files
committedAug 4, 2023
feat(theme): allow overriding logo link
closes #1683
1 parent 09a4fdc commit 2a7422b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
 

‎src/client/theme-default/components/VPNavBarTitle.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const { currentLang } = useLangs()
1212

1313
<template>
1414
<div class="VPNavBarTitle" :class="{ 'has-sidebar': hasSidebar }">
15-
<a class="title" :href="normalizeLink(currentLang.link)">
15+
<a class="title" :href="theme.logoLink ?? normalizeLink(currentLang.link)">
1616
<slot name="nav-bar-title-before" />
1717
<VPImage v-if="theme.logo" class="logo" :image="theme.logo" />
1818
<template v-if="theme.siteTitle">{{ theme.siteTitle }}</template>

‎types/default-theme.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ export namespace DefaultTheme {
1313
*/
1414
logo?: ThemeableImage
1515

16+
/**
17+
* Overrides the link of the site logo.
18+
*/
19+
logoLink?: string
20+
1621
/**
1722
* Custom site title in navbar. If the value is undefined,
1823
* `config.title` will be used.

0 commit comments

Comments
 (0)
Please sign in to comment.