Correct documentation example

This commit is contained in:
Jarek Rozanski 2023-05-27 10:20:03 +00:00
parent 9c753e625b
commit 7a5eb8fd2e
2 changed files with 3 additions and 3 deletions

View file

@ -126,13 +126,13 @@ Example:
</template>
<script setup>
import { useWideAngle } from '#imports'
import { useWaaEvent } from '#imports'
const sendEvent = async () => {
const params = {
session: 'cjhw92nf9aq',
cohort: 'c1233'
}
useWideAngle('interest', params);
useWaaEvent('interest', params);
}
</script>
```