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>()
2121 width =" 920"
2222 height =" 444"
2323 fit =" cover"
24- preload
2524 loading =" lazy"
2625 />
2726</template >
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ const props = defineProps<EventMultipleAssetsProps>()
2424 width =" 792"
2525 height =" 512"
2626 fit =" cover"
27- preload
2827 loading =" lazy"
2928 class =" image"
3029 />
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ const currentLocale = useLocaleCurrent().locale
2626 class =" sponsor-list-item-image"
2727 :src =" item['image_url']"
2828 :alt =" item.name"
29- preload
3029 loading =" lazy"
3130 />
3231 </NuxtLink >
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ const { locale: currentLocale } = useLocaleCurrent()
3030 width =" auto"
3131 height =" auto"
3232 fit =" cover"
33- preload
3433 loading =" lazy"
3534 />
3635 <div class =" buttons-wrapper" >
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import { ticketUrl } from '~/utils/constants'
1616 :detail =" $t(`personal_sponsor.merit${i}.detail`)"
1717 :caution =" i === 2 || i === 4 ? $t(`personal_sponsor.merit${i}.caution`) : ''"
1818 >
19- <NuxtImg alt =" " :src =" `/sponsor/merit-${i}.jpg`" preload loading =" lazy" />
19+ <NuxtImg alt =" " :src =" `/sponsor/merit-${i}.jpg`" loading =" lazy" />
2020 </VFMeritCard >
2121 </div >
2222 <div class =" personal-sponsor-text" >
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ const size = computed(() => {
2424 :alt =" alt"
2525 :loading =" loading"
2626 placeholder
27- preload
2827 :width =" size"
2928 :height =" size"
3029 fit =" cover"
Original file line number Diff line number Diff line change @@ -9,16 +9,7 @@ const props = defineProps<StoreItemProps>()
99<template >
1010 <div class =" store-item" >
1111 <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" />
2213 </a >
2314 <div class =" name" >{{ name }}</div >
2415 <div class =" price" >{{ price }}</div >
You can’t perform that action at this time.
0 commit comments