mirror of
https://gitee.com/lijingbo-2021/open-anylink-web.git
synced 2026-05-14 11:17:50 +00:00
11 lines
291 B
JavaScript
11 lines
291 B
JavaScript
import { useMessageStore } from '@/stores'
|
|
|
|
export const onReceiveRevokeMsg = () => {
|
|
return (msg) => {
|
|
const messageData = useMessageStore()
|
|
const sessionId = msg.body.sessionId
|
|
const revokeMsgId = msg.body.content
|
|
messageData.revokeMsgRcord(sessionId, revokeMsgId)
|
|
}
|
|
}
|