MisskeyPagesでページブロックを削除できなくなっていた問題を修正

This commit is contained in:
syuilo 2019-05-04 15:14:02 +09:00
parent e62c810b7c
commit d6131c0b09
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -1,6 +1,6 @@
<template>
<x-draggable tag="div" :list="blocks" handle=".drag-handle" :group="{ name: 'blocks' }" animation="150" swap-threshold="0.5">
<component v-for="block in blocks" :is="'x-' + block.type" :value="block" @input="updateItem" @remove="removeItem" :key="block.id" :ai-script="aiScript"/>
<component v-for="block in blocks" :is="'x-' + block.type" :value="block" @input="updateItem" @remove="() => removeItem(block)" :key="block.id" :ai-script="aiScript"/>
</x-draggable>
</template>