soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame
746 Bytes
<script>
import EventChild from './EventChild.vue'
import EventChild1 from './EventChild1.vue'
import EventChildCond from './EventChildCond.vue'
export default {
components: {
EventChild,
EventChild1,
EventChildCond,
},
data() {
return {
toggleCond: false,
}
},
methods: {
log(data) {
// console.log('Event fired from child component with data', data)
},
},
}
</script>
<template>
<div>
<h1>Events</h1>
<EventChild
@event="log"
@event-1="log"
@event-2="log"
/>
<EventChild1 @log="log" />
<EventChildCond
v-if="toggleCond"
@log="log"
/>
<button @click="toggleCond = !toggleCond">
Toggle Cond
</button>
</div>
</template>