v
v
vue-gtag
Github
Search…
v2
Get started
Migration v1 to v2
Bootstrap options
Auto tracking
Multiple domain tracking
Plugin hooks
API
Opt-in/out
Global namespace
Access gtag instance directly
Debug
Plugin options
Methods
pageview
event
screenview
customMap
purchase
linker
set
time
config
exception
Powered By
GitBook
Access gtag instance directly
I try to make all method a bit simpler so you don't need extra boilerplate, but gtag api is quite vast, so in case you didn't find what you were looking for, you can use the
query
method: it's like using
gtag
itself.
export
default
{
name
:
'MyComponent'
,
methods
:
{
track
()
{
this
.
$gtag
.
query
(
'event'
,
'screen_view'
,
{
app_name
:
'MyApp'
,
screen_name
:
'Home page'
,
})
}
}
}
Previous
Global namespace
Next
Debug
Last modified
2yr ago
Copy link