first commit

This commit is contained in:
编码猿
2024-09-27 00:58:46 +08:00
commit 92916abf8f
156 changed files with 19331 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { computed,toRefs, Ref, ref, reactive } from '@vue/composition-api';
import { UnwrapRef } from '@vue/composition-api/dist/reactivity';
/**
* 注意广播只能在androidChromeEdgeFirefoxOpera中使用
* 不支持IESafari 等浏览器,请注意兼容性
* @constructor
*/
export function HelpingPopupMessageChannel() {
const state: UnwrapRef<{
HelpingSuccess: MessageChannel
}> = {
HelpingSuccess: new MessageChannel()
};
return state
};