emptygif
Язык: Русский

Все языки и фреймворки

Vue single-file component Vue

Пример на Vue для Vue single-file component, который отвечает на запросы к /pixel.gif пустым GIF, декодированным один раз при запуске.

Vue single-file component Vue

Файл
Spacer.vue
<script setup>
const EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==';

defineProps({
  width: { type: Number, default: 1 },
  height: { type: Number, default: 1 },
});
</script>

<template>
  <img :src="EMPTY_GIF" :width="width" :height="height" alt="" aria-hidden="true">
</template>

Мы запустили этот пример и сравнили байты, которые он вернул.

Официальный сайт: Vue single-file component