[Vuejs]-How to send virtual pageview using vue-analytics?

0👍

try passing the explicit parameter object like:

this.$ga.page({
  page: '/',
  title: 'Home page',
  location: window.location.href
})

set the value for page as you wish to see it in reports

Leave a comment