import { useGtag } from "vue-gtag-next";
export default {
name: "MyComponent",
setup() {
const { config } = useGtag()
const track = () => {
config({
'cookie_prefix': 'MyCookie',
'cookie_domain': 'blog.example.com',
'cookie_expires': 28 * 24 * 60 * 60
})
};
return {
track,
};
},
};