soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame
198 Bytes
<script setup>
defineEmits([
'foo',
])
</script>
<template>
<div style="display: inline-block;">
<button @click="$emit('foo', 42, 'a')">
Emit event
</button>
</div>
</template>