mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-22 22:05:55 -04:00
23 lines
583 B
Vue
23 lines
583 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;`" loading="lazy">
|
|
</a>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
id: { required: true },
|
|
smallSize: { default: 'thumb' },
|
|
bigSize: { default: 'big' },
|
|
size: { default: 'auto' },
|
|
},
|
|
};
|
|
</script>
|