mirror of
https://github.com/szimek/sharedrop.git
synced 2026-06-05 21:02:47 +08:00
8 lines
170 B
JavaScript
8 lines
170 B
JavaScript
export default {
|
|
trackEvent(name, parameters) {
|
|
if (window.gtag && typeof window.gtag === 'function') {
|
|
window.gtag('event', name, parameters);
|
|
}
|
|
},
|
|
};
|