emptygif
Dil: Türkçe

Tüm diller ve framework'ler

Vue single-file component Vue

Vue single-file component için, /pixel.gif isteklerine başlangıçta bir kez çözülen boş GIF ile yanıt veren bir Vue örneği.

Vue single-file component Vue

Dosya
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>

Bu örneği çalıştırıp döndürdüğü baytları karşılaştırdık.

Resmî site: Vue single-file component