/** * @title: wq-components * @createDate 2021-1-6 19:11:42 * @description: 组件 * */ /** * 对象合并 */ // 公共函数 export { default as utils } from "./utils"; export { default as mitt } from "./hooks/useMitt"; export { default as provide } from "./hooks/useProvide"; export { default as useReactive } from "./hooks/useReactive"; export { default as useWatch } from "./hooks/useWatch"; export { default as store } from "./hooks/store"; // 防抖 export { default as useAntiShake } from "./hooks/useAntiShake";