track
- 1 Minute to read
- Print
- DarkLight
track
- 1 Minute to read
- Print
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback
The track method sends the collected data to our track servers. After sending, the pixel automatically deletes all data from the cache and cannot access it anymore.
Overview
Value | Description | Data type | Default value | Required |
---|---|---|---|---|
keepData | After sending the tracking data, the Pixel automatically removes all defined data. If you want to keep the data, set |
|
| - |
Implementation Example
Lifecycle Hook
<template>
<div>Example</div>
</template>
<script>
export default {
name: "example",
mounted() {
this.$webtrekk.track(false);
}
};
</script>
Was this article helpful?