Nuxt GTM
與 Nuxt 3 的 Nuxt Devtools 整合的 Nuxt Google Tag Manager 模組。
此程式庫是 @gtm-support/vue-gtm 外掛程式的 Nuxt 3 模組封裝。
快速設定
- 將
@zadigetvoltaire/nuxt-gtm
依賴項新增至您的專案
# Using pnpm
pnpm add -D @zadigetvoltaire/nuxt-gtm
# Using yarn
yarn add --dev @zadigetvoltaire/nuxt-gtm
# Using npm
npm install --save-dev @zadigetvoltaire/nuxt-gtm
- 將
@zadigetvoltaire/nuxt-gtm
新增至nuxt.config.ts
的modules
區段
export default defineNuxtConfig({
modules: [
'@zadigetvoltaire/nuxt-gtm'
],
})
- 在
nuxtConfig.gtm
或nuxtConfig.runtimeConfig.public.gtm
中新增設定
此模組支援 2 種設定方式
- 直接在 Nuxt 設定的
gtm
鍵中 - 在公共 runtimeConfig 中:有助於使用環境變數覆寫設定並處理多個環境
export default defineNuxtConfig({
...
gtm: {
id: 'GTM-xxxxxx', // Your GTM single container ID, array of container ids ['GTM-xxxxxx', 'GTM-yyyyyy'] or array of objects [{id: 'GTM-xxxxxx', queryParams: { gtm_auth: 'abc123', gtm_preview: 'env-4', gtm_cookies_win: 'x'}}, {id: 'GTM-yyyyyy', queryParams: {gtm_auth: 'abc234', gtm_preview: 'env-5', gtm_cookies_win: 'x'}}], // Your GTM single container ID or array of container ids ['GTM-xxxxxx', 'GTM-yyyyyy']
queryParams: {
// Add URL query string when loading gtm.js with GTM ID (required when using custom environments)
gtm_auth: 'AB7cDEf3GHIjkl-MnOP8qr',
gtm_preview: 'env-4',
gtm_cookies_win: 'x',
},
defer: false, // Script can be set to `defer` to speed up page load at the cost of less accurate results (in case visitor leaves before script is loaded, which is unlikely but possible). Defaults to false, so the script is loaded `async` by default
compatibility: false, // Will add `async` and `defer` to the script tag to not block requests for old browsers that do not support `async`
nonce: '2726c7f26c', // Will add `nonce` to the script tag
enabled: true, // defaults to true. Plugin can be disabled by setting this to false for Ex: enabled: !!GDPR_Cookie (optional)
debug: true, // Whether or not display console logs debugs (optional)
loadScript: true, // Whether or not to load the GTM Script (Helpful if you are including GTM manually, but need the dataLayer functionality in your components) (optional)
enableRouterSync: true, // Pass the router instance of your app to automatically sync with router (optional)
ignoredViews: ['homepage'], // Don't trigger events for specified router names (optional)
trackOnNextTick: false, // Whether or not call trackView in Vue.nextTick
devtools: true, // (optional)
}
...
runtimeConfig: {
public: {
gtm: {
id: 'GTM-xxxxxx',
queryParams: {
gtm_auth: 'AB7cDEf3GHIjkl-MnOP8qr',
gtm_preview: 'env-4',
gtm_cookies_win: 'x',
},
defer: false,
compatibility: false,
nonce: '2726c7f26c',
enabled: true,
debug: true,
loadScript: true,
enableRouterSync: true,
ignoredViews: ['homepage'],
trackOnNextTick: false,
devtools: true,
}
}
}
})
文件
組合式 API - useGtm 組合式
範例
<template>
<button @click="triggerEvent">
Trigger event!
</button>
<button @click="triggerView">
Trigger event!
</button>
</template>
<script lang="ts" setup>
const gtm = useGtm() // auto-imported by the module
function triggerEvent() {
gtm.trackEvent({
event: 'event name',
category: 'category',
action: 'click',
label: 'My custom component trigger',
value: 5000,
noninteraction: false,
})
}
function triggerView() {
gtm.trackView('Home', '/')
}
</script>
選項 API
export default {
methods: {
triggerEvent() {
this.$gtm.trackEvent({
event: 'event name',
category: 'category',
action: 'click',
label: 'My custom component trigger',
value: 5000,
noninteraction: false,
})
}
}
}
模組選項
這些模組繼承了外掛程式 @gtm-support/vue-gtm 的選項,但 vueRouter
條目已替換為 enableRouterSync
。
type ModuleOptions = {
// SPECIFIC MODULES OPTIONS
/**
* Enable Nuxt Devtools integration
*
* @default true
*/
devtools?: boolean
/**
* Synchronise GTM with NuxtRouter
*/
enableRouterSync?: boolean
// PLUGIN AND MODULE OPTIONS
/**
* Derive additional event data after navigation.
*/
vueRouterAdditionalEventData?: (to: RouteLocationNormalized, from: RouteLocationNormalized) => Record<string, any> | Promise<Record<string, any>>;
/**
* Don't trigger events for specified router names.
*/
ignoredViews?: string[] | ((to: RouteLocationNormalized, from: RouteLocationNormalized) => boolean);
/**
* Whether or not call `trackView` in `Vue.nextTick`.
*/
trackOnNextTick?: boolean;
/**
* Your GTM single container ID, array of container ids or array of objects.
*
* @example
* 'GTM-xxxxxx'
* // or
* ['GTM-xxxxxx', 'GTM-yyyyyy']
* // or
* [{
* id: 'GTM-xxxxxx',
* queryParams: {
* gtm_auth: 'abc123',
* gtm_preview: 'env-4',
* gtm_cookies_win: 'x'
* }
* }, {
* id: 'GTM-yyyyyy',
* queryParams: {
* gtm_auth: 'abc234',
* gtm_preview: 'env-5',
* gtm_cookies_win: 'x'
* }
* }]
*/
id: string | string[] | GtmIdContainer[];
/**
* Add url query string when load gtm.js with GTM ID.
*/
queryParams?: GtmQueryParams;
/**
* Script can be set to `defer` to speed up page load at the cost of less accurate results (in case visitor leaves before script is loaded, which is unlikely but possible).
*
* Defaults to false, so the script is loaded `async` by default.
*
* @default false
*/
defer?: boolean;
/**
* Will add `async` and `defer` to the script tag to not block requests for old browsers that do not support `async`.
*
* @default false
*/
compatibility?: boolean;
/**
* Will add `nonce` to the script tag.
*
* @see [Using Google Tag Manager with a Content Security Policy](https://developers.google.com/tag-manager/web/csp)
*/
nonce?: string;
/**
* The URL of the script; useful for server-side GTM.
*
* @default https://127.0.0.1/gtm.js
*/
source?: string;
/**
* Plugin can be disabled by setting this to `false`.
*
* @example enabled: !!GDPR_Cookie
* @default true
*/
enabled?: boolean;
/**
* Whether or not to display console logs debugs.
*/
debug?: boolean;
/**
* Whether or not to load the GTM Script.
*
* Helpful if you are including GTM manually, but need the dataLayer functionality in your components.
*/
loadScript?: boolean;
/**
* The property of Track view event.
*
* @example trackViewEventProperty: 'track-view-event-demo'
* @default content-view
*/
trackViewEventProperty?: string;
}
就是這樣!您現在可以在您的 Nuxt 應用程式中使用 Nuxt GTM ✨
貢獻
# Install dependencies, prepare apps & run dev server
make start
# Run dev server
pnpm dev
# Develop with playground, with bundled client ui
pnpm play:prod
# Run ESLint
pnpm lint
# Run Vitest
pnpm test
pnpm test:watch
發布新版本
- 執行發布命令
⚠ 此命令應僅在主分支上執行
此命令將會
- 產生 CHANGELOG.md 並使用發布提交推送它
- 更新套件版本
- 建立並推送新的標籤
- 建立一個 github 發布以觸發程式庫發布管道
pnpm release
© Zadig&Voltaire 是 ZV FRANCE 的註冊商標