2021-04-04 17:53:36 +08:00

17 lines
512 B
TypeScript

/**
* 暴露 Hooks
* @description 解决 Vue 3.0 使用全局变量很麻烦的问题
* @example
* import { usePush } from 'vue-baidu-analytics'
* const baidu = usePush();
* baidu.pv('/');
*/
export declare function usePush(): {
pv: (pageUrl: string) => void;
event: (category: string, action: string, label: string, value: number) => void;
};
/**
* 定义插件
*/
export default function install(Vue: Vue, { router, siteIdList, isDebug }: Partial<Options>): false | undefined;