feat: Optimisation des images

This commit is contained in:
2022-04-06 13:13:09 +02:00
parent ba8443dca6
commit 93f2c7cc35
9 changed files with 1111 additions and 42 deletions

View File

@ -14,7 +14,7 @@ defineEmits(["answerSelected"]);
const slides = ref();
if (props.question.weight == null) {
props.question.weight = props.question.answers[0].weight
props.question.weight = props.question.answers[0].weight;
}
const answerWeight = ref(props.question.weight);
@ -63,10 +63,7 @@ function slideMove(splide, newIndex) {
:key="answer.id"
@click="$emit('answerSelected', question, answerWeight)"
>
<img
height="200"
:src="`/answers/${answer.image}.png`"
/>
<img height="200" :src="`/answers/${answer.image}.webp`" />
</SplideSlide>
</Splide>
</template>