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
Raw Normal View History

2021-01-06 06:21:20 -08:00
<template>
2021-04-05 08:03:13 -07:00
<a :href="buildImageUrl(id, bigSize)" target="_blank" rel="noopener" class="d-inline-block"
@click.prevent="$eventHub.$emit('lightbox', buildImageUrl(id, bigSize))"
2021-01-06 06:21:20 -08:00
>
2021-04-18 13:28:37 -07:00
<img :src="buildImageUrl(id, smallSize)" class="border rounded-2" :style="`height: ${size}; width: auto;`"/>
2021-01-06 06:21:20 -08:00
</a>
</template>
<script>
export default {
props: {
id: {required: true},
2021-04-05 08:03:13 -07:00
smallSize: {'default': 'thumb'},
bigSize: {'default': 'big'},
size: {'default': 'auto'}
2021-01-06 06:21:20 -08:00
},
}
</script>