This commit is contained in:
syuilo
2023-05-29 17:24:46 +09:00
parent 25d1b66ca4
commit a1200ad886
11 changed files with 6 additions and 41 deletions

View File

@@ -8,7 +8,7 @@
<div style="padding: 8px; text-align: center;">
<MkButton primary gradate rounded inline @click="post"><i class="ti ti-pencil"></i></MkButton>
</div>
<MkTimeline ref="timeline" src="channel" :channel="column.channelId" @after="() => emit('loaded')"/>
<MkTimeline ref="timeline" src="channel" :channel="column.channelId"/>
</template>
</XColumn>
</template>
@@ -27,10 +27,6 @@ const props = defineProps<{
isStacked: boolean;
}>();
const emit = defineEmits<{
(ev: 'loaded'): void;
}>();
let timeline = $shallowRef<InstanceType<typeof MkTimeline>>();
let channel = $shallowRef<misskey.entities.Channel>();