soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame
435 Bytes
<script>
export default {
name: 'EventNesting',
inheritAttrs: false,
props: {
level: {
type: Number,
default: 0,
},
},
emits: [
'notify',
],
}
</script>
<template>
<EventNesting
v-if="level < 10"
:level="level + 1"
@notify="$emit('notify', level)"
/>
<div v-else>
<button @click="$emit('notify', level)">
Notify (level {{ level }})
</button>
</div>
</template>