1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-21 21:56:48 +01:00
elk/components/common/CommonBlurhash.vue
2023-04-26 22:46:00 +02:00

17 lines
388 B
Vue

<script setup lang="ts">
const { blurhash = '', src, srcset, shouldLoadImage = true } = defineProps<{
blurhash?: string
src: string
srcset?: string
shouldLoadImage?: boolean
}>()
defineOptions({
inheritAttrs: false,
})
</script>
<template>
<UnLazyImage v-bind="$attrs" :blurhash="blurhash" :src="src" :src-set="srcset" :lazy-load="shouldLoadImage" auto-sizes />
</template>