import * as utils from './utils'; /** * 导出共享工具函数 */ export function useSharedUtils() { return { ...utils }; } // 直接导出所有工具函数 export * from './utils';