mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-26 12:06:43 -06:00
bd8d7c3d0f
* ページをピン留めできるように * デッキでカラム内でページを見れるように
36 lines
473 B
Vue
36 lines
473 B
Vue
<template>
|
|
<div class="lzyxtsnt">
|
|
<img v-if="image" :src="image.url"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
props: {
|
|
value: {
|
|
required: true
|
|
},
|
|
page: {
|
|
required: true
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
image: null,
|
|
};
|
|
},
|
|
|
|
created() {
|
|
this.image = this.page.attachedFiles.find(x => x.id === this.value.fileId);
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.lzyxtsnt
|
|
> img
|
|
max-width 100%
|
|
</style>
|