This commit is contained in:
kakkokari-gtyih 2024-09-01 23:17:01 +09:00
parent 7bfcd6d065
commit b013ec288c
1 changed files with 2 additions and 2 deletions

View File

@ -4,8 +4,8 @@ SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
<div ref="dndParentEl"></div>
<div v-for="item in items" :class="$style.item">
<div ref="dndParentEl">
<div v-for="item in items" :key="item.id" :class="$style.item">
<component :is="getComponent(item.type)" :modelValue="item" @update:modelValue="updateItem" @remove="() => removeItem(item)"/>
</div>
</div>