File tree Expand file tree Collapse file tree 7 files changed +2
-16
lines changed Expand file tree Collapse file tree 7 files changed +2
-16
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ const props = defineProps<EventAssetProps>()
21
21
width =" 920"
22
22
height =" 444"
23
23
fit =" cover"
24
- preload
25
24
loading =" lazy"
26
25
/>
27
26
</template >
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ const props = defineProps<EventMultipleAssetsProps>()
24
24
width =" 792"
25
25
height =" 512"
26
26
fit =" cover"
27
- preload
28
27
loading =" lazy"
29
28
class =" image"
30
29
/>
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ const currentLocale = useLocaleCurrent().locale
26
26
class =" sponsor-list-item-image"
27
27
:src =" item['image_url']"
28
28
:alt =" item.name"
29
- preload
30
29
loading =" lazy"
31
30
/>
32
31
</NuxtLink >
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ const { locale: currentLocale } = useLocaleCurrent()
30
30
width =" auto"
31
31
height =" auto"
32
32
fit =" cover"
33
- preload
34
33
loading =" lazy"
35
34
/>
36
35
<div class =" buttons-wrapper" >
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import { ticketUrl } from '~/utils/constants'
16
16
:detail =" $t(`personal_sponsor.merit${i}.detail`)"
17
17
:caution =" i === 2 || i === 4 ? $t(`personal_sponsor.merit${i}.caution`) : ''"
18
18
>
19
- <NuxtImg alt =" " :src =" `/sponsor/merit-${i}.jpg`" preload loading =" lazy" />
19
+ <NuxtImg alt =" " :src =" `/sponsor/merit-${i}.jpg`" loading =" lazy" />
20
20
</VFMeritCard >
21
21
</div >
22
22
<div class =" personal-sponsor-text" >
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ const size = computed(() => {
24
24
:alt =" alt"
25
25
:loading =" loading"
26
26
placeholder
27
- preload
28
27
:width =" size"
29
28
:height =" size"
30
29
fit =" cover"
Original file line number Diff line number Diff line change @@ -9,16 +9,7 @@ const props = defineProps<StoreItemProps>()
9
9
<template >
10
10
<div class =" store-item" >
11
11
<a :href =" url" target =" _blank" >
12
- <NuxtImg
13
- :alt
14
- :src
15
- width =" 616"
16
- height =" 616"
17
- fit =" cover"
18
- preload
19
- loading =" lazy"
20
- class =" image"
21
- />
12
+ <NuxtImg :alt :src width =" 616" height =" 616" fit =" cover" loading =" lazy" class =" image" />
22
13
</a >
23
14
<div class =" name" >{{ name }}</div >
24
15
<div class =" price" >{{ price }}</div >
You can’t perform that action at this time.
0 commit comments