You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
833 B
19 lines
833 B
4 days ago
|
|
||
|
import uma from 'umtrack-wx';
|
||
|
uma.init({
|
||
|
appKey: '64cc98d5a1a164591b62da3e', // 由友盟分配的APP_KEY
|
||
|
useOpenid: true,
|
||
|
// 使用Openid进行统计,此项为false时将使用友盟+uuid进行用户统计。
|
||
|
// 使用Openid来统计微信小程序的用户,会使统计的指标更为准确,对系统准确性要求高的应用推荐使用Openid
|
||
|
autoGetOpenid: true,
|
||
|
// 使用openid进行统计时,是否授权友盟自动获取Openid,
|
||
|
// 如若需要,请到友盟后台"设置管理-应用信息"(https://mp.umeng.com/setting/appset)中设置appId及secret
|
||
|
debug: true,// 是否打开调试模式
|
||
|
uploadUserInfo: true, // 自动上传用户信息,设为false取消上传,默认为false
|
||
|
enableVerify: true
|
||
|
});
|
||
|
uma.install = function(Vue) {
|
||
|
Vue.prototype.$uma = uma;
|
||
|
}
|
||
|
export default uma;
|