emptygif
Bahasa: Bahasa Indonesia

Semua bahasa dan framework

Vue single-file component Vue

Snippet Vue untuk Vue single-file component yang menjawab request ke /pixel.gif dengan empty GIF, yang di-decode sekali saat startup.

Vue single-file component Vue

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

Kami telah menjalankan snippet ini dan membandingkan byte yang dikembalikannya.

Situs resmi: Vue single-file component