12 lines
290 B
TypeScript
12 lines
290 B
TypeScript
/**
|
|
* 全局组合式函数入口文件
|
|
* 导出所有可用的组合式函数
|
|
*/
|
|
|
|
// 导出核心组合式函数
|
|
export { useStomp } from "./useStomp";
|
|
|
|
// 导出业务服务组合式函数
|
|
export { useDictSync } from "./useDictSync";
|
|
export { useOnlineCount } from "./useOnlineCount";
|