Skip to content

Commit

Permalink
Merge branch 'chore/add-ga-n-globally-info' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
schirrel committed Aug 22, 2021
2 parents 78500af + d6f4c78 commit 4f4cc31
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/components/FullProfile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,20 @@ export default {
mounted() {
this.loadUser();
console.log("profile", this.$store.getters["user/user"]);
window.gtag("event", "profile - action", {
event_category: "<category>",
event_label: " <label>",
value: "<value>",
});
},
created() {
console.log("%c mixin - profile", "color: green", this.$mode);
console.log("%c $router - profile", "color: green", this.$router);
console.log(
"created life cicly - userData - Profile: ",
UserTools.storage.userData()?.name?.first
"%c created life cicly - userData - Profile: ",
"color: #bada55;",
emitters.helpers.userData().name.first
);
},
computed: {
Expand Down

0 comments on commit 4f4cc31

Please sign in to comment.