We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f52a262 commit ec7643dCopy full SHA for ec7643d
src/client/theme-default/components/VPHero.vue
@@ -27,10 +27,10 @@ const heroImageSlotExists = inject('hero-image-slot-exists') as Ref<boolean>
27
<div class="main">
28
<slot name="home-hero-info">
29
<h1 v-if="name" class="name">
30
- <span class="clip">{{ name }}</span>
+ <span v-html="name" class="clip"></span>
31
</h1>
32
- <p v-if="text" class="text">{{ text }}</p>
33
- <p v-if="tagline" class="tagline">{{ tagline }}</p>
+ <p v-if="text" v-html="text" class="text"></p>
+ <p v-if="tagline" v-html="tagline" class="tagline"></p>
34
</slot>
35
36
<div v-if="actions" class="actions">
0 commit comments