syuji-higa
8/25/2019 - 2:30 PM

Nuxt.js - GTM

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>