Skip to content

A VueJS plugin for the LinkedIn campaign analytics to be used as a module for Nuxt applications

License

Notifications You must be signed in to change notification settings

anny-co/vue-lic

Repository files navigation

anny-co/vue-lic

A Vue plugin to embed the LinkedIn Campaign into your webpage and control it like a Vue plugin. In particular helpful with Nuxt and noscript Nuxt context.

Usage

Install the package into your Nuxt project:

yarn add @anny.co/vue-lic

Then, add a plugin to ./plugins like this

// vue-lic.ts

import Vue from 'vue'
import VueLIC from '@anny.co/vue-lic'
import type { Options } from '@anny.co/vue-lic'
import { Plugin } from '@nuxt/types'

/**
 * vue-lic plugin
 */
const vueGtag: Plugin = ({ app, $config }) => {
  // check env for LIC_ENABLED
  if (!$config.licEnabled) {
    return
  }
  if (process.client) {
    Vue.use(
      VueLIC,
      {
        config: {
          id: $config.licId,
        },
        bootstrap: false, // no automatic bootstrapping
        enabled: true,
        appName: $config.appName,
      } as Options,
      app.router
    )
  }
}

export default vueLIC

Then, add the plugin to your nuxt.config.{js,ts}:

plugins: [
  ...
  './plugins/vue-lic.ts',
],

Lastly, make sure to fit your cookie guidelines and privacy policy to allow the usage of LinkedIn campaigns on your website and remember ask your users if they want to be tracked, don't do tracking by default!

In your application, check if the user accepted tracking cookies and then bootstrap the plugin

import { bootstrap as loadLic } from '@anny.co/vue-lic';

...

if (acceptedCookies) {
  loadLic().then(() => {
    Vue.$lic.optIn();
  }.catch((err) => {
    return;
  });
}

About

A VueJS plugin for the LinkedIn campaign analytics to be used as a module for Nuxt applications

Resources

License

Stars

Watchers

Forks

Packages

No packages published