2019-04-29 00:11:57 +00:00
|
|
|
<template>
|
|
|
|
<div class="lzyxtsnt">
|
2022-05-19 11:41:47 +00:00
|
|
|
<ImgWithBlurhash v-if="image" :hash="image.blurhash" :src="image.url" :alt="image.comment" :title="image.comment" :cover="false"/>
|
2019-04-29 00:11:57 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-05-19 11:41:47 +00:00
|
|
|
<script lang="ts" setup>
|
2023-02-16 14:09:41 +00:00
|
|
|
import { PropType } from 'vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import ImgWithBlurhash from '@/components/MkImgWithBlurhash.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import { ImageBlock } from '@/scripts/hpml/block';
|
|
|
|
import { Hpml } from '@/scripts/hpml/evaluator';
|
2019-04-29 00:11:57 +00:00
|
|
|
|
2022-05-19 11:41:47 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
block: PropType<ImageBlock>,
|
|
|
|
hpml: PropType<Hpml>,
|
|
|
|
}>();
|
2021-01-30 01:59:05 +00:00
|
|
|
|
2022-05-19 11:41:47 +00:00
|
|
|
const image = props.hpml.page.attachedFiles.find(x => x.id === props.block.fileId);
|
2019-04-29 00:11:57 +00:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2020-01-29 19:37:25 +00:00
|
|
|
.lzyxtsnt {
|
|
|
|
> img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2019-04-29 00:11:57 +00:00
|
|
|
</style>
|