File tree 2 files changed +11
-1
lines changed
src/client/theme-default/components
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,19 @@ defineProps<{
11
11
link? : string
12
12
linkText? : string
13
13
rel? : string
14
+ target? : string
14
15
}>()
15
16
</script >
16
17
17
18
<template >
18
- <VPLink class =" VPFeature" :href =" link" :rel =" rel" :no-icon =" true" :tag =" link ? 'a' : 'div'" >
19
+ <VPLink
20
+ class =" VPFeature"
21
+ :href =" link"
22
+ :rel =" rel"
23
+ :target =" target"
24
+ :no-icon =" true"
25
+ :tag =" link ? 'a' : 'div'"
26
+ >
19
27
<article class =" box" >
20
28
<VPImage
21
29
v-if =" typeof icon === 'object'"
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ export interface Feature {
10
10
link? : string
11
11
linkText? : string
12
12
rel? : string
13
+ target? : string
13
14
}
14
15
15
16
const props = defineProps <{
@@ -50,6 +51,7 @@ const grid = computed(() => {
50
51
:link =" feature.link"
51
52
:link-text =" feature.linkText"
52
53
:rel =" feature.rel"
54
+ :target =" feature.target"
53
55
/>
54
56
</div >
55
57
</div >
You can’t perform that action at this time.
0 commit comments