You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+7-2
Original file line number
Diff line number
Diff line change
@@ -53,13 +53,14 @@ That's it! You can now use Nuxt UTM in your Nuxt app ✨
53
53
54
54
## Usage
55
55
56
-
You can use ```useNuxtUTM``` composable to access the UTM object:
56
+
You can use `useNuxtUTM` composable to access the UTM object:
57
57
58
58
```vue
59
59
<script setup>
60
60
const utm = useNuxtUTM();
61
61
</script>
62
62
```
63
+
63
64
> Remember: You don't need to import the composable because nuxt imports it automatically.
64
65
65
66
Alternatively, you can get the UTM information through the Nuxt App with the following instructions:
@@ -95,6 +96,10 @@ Regardless of the option you choose to use the module, the `utm' object will con
95
96
},
96
97
},
97
98
sessionId:"beai1gx7dg",
99
+
gclidParams: {
100
+
gclid:"CjklsefawEFRfeafads",
101
+
gad_source:"1",
102
+
},
98
103
}, // the first item in this array is the most recent
99
104
// ... old items
100
105
];
@@ -106,7 +111,7 @@ In the `$utm` array, each entry provides a `timestamp` indicating when the UTM p
106
111
107
112
### Devenv
108
113
109
-
You can take advantage of [devenv.sh](https://devenv.sh)to quickly create the development environment for this this project. Use it in combination with [direnv](https://direnv.net/) to quickly load all the environment while navigating into the project directory in your shell.
114
+
You can take advantage of [devenv.sh](https://devenv.sh) to quickly create the development environment for this this project. Use it in combination with [direnv](https://direnv.net/) to quickly load all the environment while navigating into the project directory in your shell.
0 commit comments