trackAction

Prev Next

The trackAction 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 true as the first argument, then you can delete the data manually.

Boolean

false

-

Implementation Example

Lifecycle Hook

<template>
  <div @click="onClick">Example</div>
</template>
 
<script>
export default {
  name: "example",
  methods: {
    onClick() {
      this.$webtrekk.trackAction(false);
    }
  }
};
</script>