We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66d0ad3 commit bed984cCopy full SHA for bed984c
apps/web/app/components/ticket/PersonalSponsorSection.vue
@@ -1,5 +1,7 @@
1
<script setup lang="ts">
2
import { endedApplyNormal, ticketUrl } from '~/utils/constants'
3
+import { useWithBase } from '#imports'
4
+const withBase = useWithBase()
5
</script>
6
7
<template>
@@ -16,7 +18,7 @@ import { endedApplyNormal, ticketUrl } from '~/utils/constants'
16
18
:detail="$t(`personal_sponsor.merit${i}.detail`)"
17
19
:caution="i === 2 || i === 4 ? $t(`personal_sponsor.merit${i}.caution`) : ''"
20
>
- <NuxtImg alt="" :src="`/sponsor/merit-${i}.jpg`" loading="lazy" class="image" />
21
+ <NuxtImg alt="" :src="withBase(`/sponsor/merit-${i}.jpg`)" loading="lazy" class="image" />
22
</VFMeritCard>
23
</div>
24
<div class="personal-sponsor-text">
0 commit comments