-
-
Notifications
You must be signed in to change notification settings - Fork 481
Closed
Labels
Description
I have simple code in template:
<a
href="https://github.com/cawa-93/anime-library/issues/new/choose"
@click.prevent="openURL($event.target.href)"
>🐞 Bug</a>
And I got TS error:
error TS2531: Object is possibly 'null'.
@click.prevent="openURL($event.target.href)"
~~~~~~~~~~~~~
error TS2339: Property 'href' does not exist on type 'EventTarget'.
@click.prevent="openURL($event.target.href)"
~~~~
It would be fantastic if the TS determined that
EventTarget
actually isHTMLAnchorElement
- It is guaranteed exist
I use vue-tsc
with PhpSthorm if this have matter