import { contact } from '../public/js/ContactUS.js'; export const useContact = () => { return { phone: contact.phone, phoneHref: contact.phoneHref, telegram: contact.telegram, whatsapp: contact.whatsapp, // facebook: contact.facebook, // 保留注释 }; }; // 也可以直接导出配置对象 export const contactConfig = { phone: contact.phone, phoneHref: contact.phoneHref, telegram: contact.telegram, whatsapp: contact.whatsapp, // facebook: contact.facebook, // 保留注释 };