mirror of
https://github.com/analyticsjs/vue-baidu-analytics.git
synced 2025-04-05 19:41:42 +08:00
17 lines
512 B
TypeScript
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;
|