c0838c473f
* enhance datasaver mode * サムネイルがないとき変な角丸にならんようにする * Avoid using wildcard selector * Avoid wildcard * Update MkMediaImage.vue * (fix) ノートの画像プレビューがでない * (fix) recent pages design --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
28 lines
622 B
Vue
28 lines
622 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div>
|
|
<MediaImage
|
|
v-if="image"
|
|
:image="image"
|
|
:disableImageLink="true"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import { ImageBlock } from './block.type';
|
|
import MediaImage from '@/components/MkMediaImage.vue';
|
|
|
|
const props = defineProps<{
|
|
block: ImageBlock,
|
|
page: Misskey.entities.Page,
|
|
}>();
|
|
|
|
const image = ref<Misskey.entities.DriveFile>(props.page.attachedFiles.find(x => x.id === props.block.fileId));
|
|
</script>
|