Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@prestashopcorp/segment-vue

Package Overview
Dependencies
Maintainers
3
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@prestashopcorp/segment-vue

plugin vue for segment

  • 3.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-33.33%
Maintainers
3
Weekly downloads
 
Created
Source

vue-segment

Vue plugin for Segment

Vue.js plugin for Segment

Segment Analytics.js Documentation

Requirements

Vue ^2.x or Vue ^3.x

npm install @prestashopcorp/segment-vue

Vue 2

import Vue from 'vue'
import SegmentVue from '@prestashopcorp/segment-vue'

Vue.use(SegmentVue, {
  id: 'XXXXX',
})

Vue 3

import { createApp } from 'vue'
import SegmentVue from '@prestashopcorp/segment-vue'

const app = createApp(App)

app.use(SegmentVue, {
  id: 'XXXXX',
})

LoadOptions

For GDPR it's necessary to desactivate all integrations An Example below :

import Vue from 'vue'
import SegmentVue from '@prestashopcorp/segment-vue'

Vue.use(SegmentVue, {
  id: 'XXXXX',
  settings: {
    integrations: {
      All: false,
      'Segment.io': true,
    },
  },
})

For example with axeptio

axeptio.on('cookies:complete', function (choices) {
  if (choices.google_analytics && choices.hotjar) {
    window.analytics.load(SEGMENT_KEY, {
      integrations: {
        All: false,
        'Segment.io': true,
        'Google Analytics': true,
        Hotjar: true,
      },
    })
    window.location.reload()
  }
})

Identify

add this on your layout file

created(){
  this.$segment.identify({shopId}, {
    name: "FullName_account",
    email: "email_account",
    plan: "premium_account"
  })
}

Track

add this on each method click

handleClick(){
  this.$segment.track(NAME_YOUR_TRACK,
  //optional properties
  {
    name: "it's your track name",
    category: "ps_metrics",
  })
}

Options

route track option

put the name attribute in each route and add your router to the vue-segment initialization

Vue 2

export default {
  path: 'dashboard',
  name: 'dashboard', //Set name on each route
  component: DashboardApp,
}

Vue.use(SegmentVue, {
  id: 'XXXXX',
  router,
})

Vue 3

export default {
  path: 'dashboard',
  name: 'dashboard', //Set name on each route
  component: DashboardApp,
}

app.use(SegmentVue, {
  id: 'XXXXX',
  router,
})

exclude route option

export default {
  name: 'activity',
  path: 'activity',
  meta: { exclude: true }, // <= add this key in your route object, true to exclude, false to track
  component: () =>
    import(
      /* webpackChunkName: "dashboardActivity" */ '@/core/dashboard/pages/ActivityApp'
    ),
  redirect: 'activity/revenue',
  children: [RevenueRouter, OrderRouter, ConversionRouter, VisitRouter],
}

page category option

put the name attribute in each route and add your router to the vue-segment initialization

Vue 2

Vue.use(SegmentVue, {
  id: 'XXXXX',
  router,
  pageCategory: 'ps_metrics_',
})

Vue 3

app.use(SegmentVue, {
  id: 'XXXXX',
  router,
  pageCategory: 'ps_metrics_',
})

FAQs

Package last updated on 14 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc