1.0.1 • Published 4 months ago

nuxt3-delacon v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

Nuxt 3 Delacon

A nuxt module for integrating Delacon call tracking into your Nuxt 3 application.

Getting Started

Installation

First step is to install it using npm or yarn:

npm install nuxt3-delacon
# or
yarn add nuxt3-delacon

Usage

In your Nuxt 3 project, create a nuxt.config.ts file if you don't already have one, and add the module to the modules array:

// nuxt.config.ts
export default defineNuxtConfig({
  modules: [
    ['nuxt3-delacon', {
      mid: 'your-mid', // Your Delacon MID
      cid: ['your-cid'] // Your Delacon CID
    }]
  ]
})

Replace 'your-mid' and 'your-cid' with your actual Delacon MID and CID values.

Options

mid (required)

Your Delacon MID.

  • Type: Integer

cid (required)

Your Delacon CID. If an array is provided, it will be joined with "-" delimiter before passing to Delacon.

  • Type: string|int[]

License

MIT License

Copyright (c) Gian Carlo Saquilayan

1.0.1

4 months ago

1.0.0

4 months ago