|
|
@ -7,7 +7,7 @@ import VPIconArrowRight from './icons/VPIconArrowRight.vue'
|
|
|
|
defineProps<{
|
|
|
|
defineProps<{
|
|
|
|
icon?: DefaultTheme.FeatureIcon
|
|
|
|
icon?: DefaultTheme.FeatureIcon
|
|
|
|
title: string
|
|
|
|
title: string
|
|
|
|
details: string
|
|
|
|
details?: string
|
|
|
|
link?: string
|
|
|
|
link?: string
|
|
|
|
linkText?: string
|
|
|
|
linkText?: string
|
|
|
|
}>()
|
|
|
|
}>()
|
|
|
@ -25,7 +25,7 @@ defineProps<{
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
<div v-else-if="icon" class="icon">{{ icon }}</div>
|
|
|
|
<div v-else-if="icon" class="icon">{{ icon }}</div>
|
|
|
|
<h2 class="title" v-html="title"></h2>
|
|
|
|
<h2 class="title" v-html="title"></h2>
|
|
|
|
<p class="details" v-html="details"></p>
|
|
|
|
<p v-if="details" class="details" v-html="details"></p>
|
|
|
|
|
|
|
|
|
|
|
|
<div v-if="linkText" class="link-text">
|
|
|
|
<div v-if="linkText" class="link-text">
|
|
|
|
<p class="link-text-value">
|
|
|
|
<p class="link-text-value">
|
|
|
|