Skip to content

Commit

Permalink
fix(markdown-link): replacing blank prop with target (#1828)
Browse files Browse the repository at this point in the history
  • Loading branch information
arashsheyda committed Jan 18, 2023
1 parent b4750ed commit 541cca9
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/runtime/components/Prose/ProseA.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ defineProps({
type: String,
default: ''
},
blank: {
type: Boolean,
default: false
target: {
type: String,
default: undefined,
required: false
}
})
</script>

<template>
<NuxtLink :href="href">
<NuxtLink :href="href" :target="target">
<slot />
</NuxtLink>
</template>

0 comments on commit 541cca9

Please sign in to comment.