[Vuejs]-Property 'style' does not exist on type 'EventTarget'

0👍

You’ll need to check if it’s an element before proceeding:

if (event.target instanceof HTMLElement) {
    event.target.style.opacity = 1 // ok

Leave a comment