Skip to content

Commit

Permalink
fix(ProseA): deleted static and replaced blank with target (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernankez authored Mar 27, 2023
1 parent fb88aef commit 940854e
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions components/global/ProseA.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,16 @@ defineProps({
type: String,
default: ''
},
blank: {
type: Boolean,
default: false
},
/**
* `true` if `href` points to a static file
*/
static: {
type: Boolean,
default: false
target: {
type: String,
default: undefined,
required: false
}
})
</script>

<template>
<NuxtLink :to="href" :blank="blank" :static="static">
<NuxtLink :to="href" :target="target">
<slot />
</NuxtLink>
</template>
Expand Down

1 comment on commit 940854e

@vercel
Copy link

@vercel vercel bot commented on 940854e Mar 27, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

typography – ./

typography-git-main-nuxtlabs.vercel.app
typography-nuxtlabs.vercel.app
typography.nuxt.space

Please sign in to comment.