import { useGtag } from "vue-gtag-next";
export default {
name: "MyComponent",
setup() {
const { purchase } = useGtag()
const track = () => {
purchase({
"transaction_id": "24.031608523954162",
"affiliation": "Google online store",
"value": 23.07
})
};
return {
track,
};
},
};