I have a dropdown menu with links, when the links are clicked I'd like the menu to close.
Something like (a11y/i18n truncated):
<ul class="menu">
<li>
<LinkTo @route="myprofile">
Profile
</LinkTo>
</li>
<li>
<LinkTo @route="logout">
Logout
</LinkTo>
</li>
</ul>
I'd like to add an additional click handler to the link to, something like:
<ul class="menu">
<li>
<LinkTo @route="myprofile" >
Profile
</LinkTo>
</li>
<li>
<LinkTo @route="logout" >
Logout
</LinkTo>
</li>
</ul>
However this makes the LinkTo
useless as it reloads the page as if following a link instead of transitioning to a new route. We're currently doing this using hember-link-action, but I'd love to find a more idiomatic way to approach this problem.
Aucun commentaire:
Enregistrer un commentaire