soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame
253 Bytes
<script>
export default {
methods: {
emitLogEvent() {
this.$emit('log')
},
},
}
</script>
<template>
<div>
<button
class="btn-emit-log-event"
@click="emitLogEvent"
>
Emit
</button>
</div>
</template>