diff --git a/src/components/NavigationCard.vue b/src/components/NavigationCard.vue index a5211bc..610695e 100644 --- a/src/components/NavigationCard.vue +++ b/src/components/NavigationCard.vue @@ -40,10 +40,11 @@ > @@ -90,6 +91,10 @@ export default { type: String, default: '#' }, + linkExternal: { + type: Boolean, + default: undefined, + }, summary: { type: String, default: undefined, @@ -101,7 +106,8 @@ export default { }, computed: { - hasImage: ({ $scopedSlots, imageSrc }) => imageSrc || $scopedSlots.image + hasImage: ({ $scopedSlots, imageSrc }) => imageSrc || $scopedSlots.image, + linkIcon: ({ linkExternal }) => linkExternal ? 'upper-right-arrow' : 'right-arrow-2', } }