This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/components/ImageThumb.vue

19 lines
564 B
Vue

<template>
<a :href="buildImageUrl(id, bigSize)" target="_blank" rel="noopener" class="d-inline-block"
@click.prevent="$eventHub.$emit('lightbox', buildImageUrl(id, bigSize))"
>
<img :src="buildImageUrl(id, smallSize)" class="border rounded-2" :style="`height: ${size}; width: auto;`"/>
</a>
</template>
<script>
export default {
props: {
id: {required: true},
smallSize: {'default': 'thumb'},
bigSize: {'default': 'big'},
size: {'default': 'auto'}
},
}
</script>