エフェクトが壊れて出ないのを修正

This commit is contained in:
meronmks 2023-10-24 12:53:54 +09:00
parent bf3ca78027
commit 0b59236ec4
No known key found for this signature in database
1 changed files with 5 additions and 2 deletions

View File

@ -43,7 +43,6 @@ SPDX-License-Identifier: AGPL-3.0-only
</button>
</div>
<div v-if="shown" style="padding-left: 18px;">
<!-- TODO: 再帰へのイベントの渡し方が微妙なのか反応はするがエフェクトが出ない -->
<MkEmojiPickerSection
v-for="child in customEmojiTree"
:key="`custom:${child.value}`"
@ -51,7 +50,7 @@ SPDX-License-Identifier: AGPL-3.0-only
:emojis="computed(() => customEmojis.filter(e => e.category === child.category).map(e => `:${e.name}:`))"
:isChildrenExits="child.children.length!==0"
:customEmojiTree="child.children"
@chosen="emit('chosen', $event, $event)"
@chosen="nestedChosen"
>
{{ child.value }}
</MkEmojiPickerSection>
@ -87,4 +86,8 @@ function computeButtonTitle(ev: MouseEvent): void {
const emoji = elm.dataset.emoji as string;
elm.title = getEmojiName(emoji) ?? emoji;
}
function nestedChosen(emoji: any, ev?: MouseEvent) {
emit('chosen', emoji, ev);
}
</script>