Skip to content

Instantly share code, notes, and snippets.

@syuji-higa
Last active November 16, 2019 04:06
Show Gist options
  • Save syuji-higa/72b9f345b9d9225d0d1bfc87a9702e5d to your computer and use it in GitHub Desktop.
Save syuji-higa/72b9f345b9d9225d0d1bfc87a9702e5d to your computer and use it in GitHub Desktop.
Nuxt.js - GTM
export const pushGtmEvent = (event = 'nuxt.historyChange) => {
if(window.dataLayer) {
setTimeout(() => {
window.dataLayer.push({ event })
}, 500)
}
}
<script>
import pushGtmEvent from '~/utils/gtm'
export default {
mounted() {
this.$nextTick(() => {
pushGtmEvent()
})
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment