import { createSharedComposable } from "@vueuse/core"; const _useWhatsappMsgSender = () => { // --- WhatsApp 自动消息逻辑 --- const sendMessage = (message: string) => { const text = encodeURIComponent(message); const url = `https://api.whatsapp.com/send?phone=+601157753558&text=${text}`; window.open(url, "_blank"); }; return { sendMessage, }; }; export const useWhatsappMsgSender = createSharedComposable( _useWhatsappMsgSender );