Skip to content

Commit bed68f1

Browse files
authoredJul 5, 2022
fix: normalize link in VPButton (#919)
1 parent 3e0c5e4 commit bed68f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
22
import { computed } from 'vue'
3-
import { withBase } from 'vitepress'
3+
import { normalizeLink } from '../support/utils'
44
55
const props = defineProps<{
66
tag?: string
@@ -31,7 +31,7 @@ const component = computed(() => {
3131
:is="component"
3232
class="VPButton"
3333
:class="classes"
34-
:href="href ? withBase(href) : undefined"
34+
:href="href ? normalizeLink(href) : undefined"
3535
:target="isExternal ? '_blank' : undefined"
3636
:rel="isExternal ? 'noopener noreferrer' : undefined"
3737
>

0 commit comments

Comments
 (0)
Please sign in to comment.