Closed
Description
Vue version
3.2.39
Link to minimal reproduction
Steps to reproduce
Add a static v-on followed by a dynamic v-on:
<script setup>
defineProps(['validateEvent'])
</script>
<template>
<input
@blur="onBlur"
@[validateEvent]="onValidate"
>
</template>
What is expected?
onBlur
is called even if validateEvent === 'blur'
What is actually happening?
onBlur
is not called
System Info
No response
Any additional comments?
No response