wideangle-nuxt/playground/components/sample-tracker.vue

12 lines
243 B
Vue
Raw Normal View History

2025-01-29 01:01:34 +01:00
<template>
<button @click="sendEvent">Send Event</button>
</template>
<script setup>
import { useWideAngle } from '#imports';
const sendEvent = () => {
useWideAngle().dispatchEvent('foo', {'param1': 'bar'}, {'value1': 123});
}
</script>