Skip to content

Commit

Permalink
🐛 (link) fix blank reeference (props.blank)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tahul committed Jun 28, 2021
1 parent a04c21a commit 7c3692e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/defaultTheme/components/atoms/Link.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default defineComponent({
const linkAttrs = computed(() => ({
rel: isInternal.value ? undefined : 'noopener nofollow noreferrer',
target: blank ? '_blank' : undefined
target: props.blank ? '_blank' : undefined
}))
return {
Expand Down

1 comment on commit 7c3692e

@vercel
Copy link

@vercel vercel bot commented on 7c3692e Jun 28, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.