41 lines
728 B
Vue
41 lines
728 B
Vue
<template>
|
|
<div class="lzyxtsnt">
|
|
<img v-if="image" :src="image.url"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, PropType } from 'vue';
|
|
import * as os from '@client/os';
|
|
import { ImageBlock } from '@client/scripts/hpml/block';
|
|
import { Hpml } from '@client/scripts/hpml/evaluator';
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
block: {
|
|
type: Object as PropType<ImageBlock>,
|
|
required: true
|
|
},
|
|
hpml: {
|
|
type: Object as PropType<Hpml>,
|
|
required: true
|
|
}
|
|
},
|
|
setup(props, ctx) {
|
|
const image = props.hpml.page.attachedFiles.find(x => x.id === props.block.fileId);
|
|
|
|
return {
|
|
image
|
|
};
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.lzyxtsnt {
|
|
> img {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
</style>
|