Implement Replies #29

Merged
sauceyred merged 21 commits from replies into main 2025-07-11 01:39:45 +00:00
Showing only changes of commit 292bd64ed4 - Show all commits

View file

@ -1,5 +1,5 @@
<template>
<div v-for="item of menuItems" class="context-menu-item">
<div v-for="item of props.menuItems" class="context-menu-item" @click="runCallback(item)">
{{ item.name }}
</div>
</template>
@ -18,12 +18,9 @@ onMounted(() => {
});
function editMessage() {
//
}
function replyMessage(id: string) {
//
function runCallback(item: ContextMenuItem) {
removeContextMenu();
item.callback();
}
</script>