nuxt-dynamic-tag-management
Version:
Nuxt.js module of Adobe Dynamic Tag Management
27 lines (19 loc) • 491 B
Markdown
Nuxt.js module of Adobe Dynamic Tag Management.
```sh
$ npm i nuxt-dynamic-tag-management
```
nuxt.config.js
```js
module.exports = {
modules: [
['nuxt-dynamic-tag-management', {
scriptSrc: '//assets.adobedtm.com/xxx/satelliteLib-xxx.js' // Script URL which you are directed to embed in your page
trackName: 'page view' // A string value will be passed to the 1st argument of `_satellite.track`
}]
]
}
```
MIT