From 5b38341d08c1e9229a067443e30c12dbc7b7f700 Mon Sep 17 00:00:00 2001 From: Baghi Date: Wed, 30 Apr 2025 13:44:14 +0330 Subject: [PATCH] chat --- components/chat/components/ChatList.vue | 27 ++++++++++++++++++++++++ components/chat/components/Group.vue | 28 +++++++++++++++---------- 2 files changed, 44 insertions(+), 11 deletions(-) diff --git a/components/chat/components/ChatList.vue b/components/chat/components/ChatList.vue index 1e1fa16..9f714a6 100644 --- a/components/chat/components/ChatList.vue +++ b/components/chat/components/ChatList.vue @@ -1766,6 +1766,33 @@ export default { alert("ontouchstart"); }, }, + components: { + ContextMenu: defineAsyncComponent(() => + import("@components/global/ContextMenu.vue") + ), + EntityQustionsContent: defineAsyncComponent(() => + import("@search/components/entity/components/entity-contents/EntityQustionsContent.vue") + ), + Multiselect: () => import("vue-multiselect"), + + + // EntityQustionsContent: () => + // import("@chat/components/entity-contents/EntityQustionsContent.vue"), + // EntityListContent: () => + // import("@chat/components/entity-contents/EntityListContent.vue"), + // EntitySliderContent: () => + // import("@chat/components/entity-contents/EntitySliderContent.vue"), + // EntityTextContent: () => + // import("@chat/components/entity-contents/EntityTextContent.vue"), + // EntitySliderContentTwo: () => + // import("@chat/components/entity-contents/EntitySliderContentTwo.vue"), + // EntityHorizontalListContent: () => + // import( + // "@chat/components/entity-contents/EntityHorizontalListContent.vue" + // ), + // EntityFishContent: () => + // import("@chat/components/entity-contents/EntityFishContent.vue"), + }, };