You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/action-custom-event-handler.../main.svelte

20 lines
341 B

<script>
function enter(node, callback) {
function handleKeydown(event) {
if (event.key === 'Enter') {
callback(event);
}
}
node.addEventListener('keydown', handleKeydown);
return {
destroy() {
node.removeEventListener('keydown', handleKeydown);
}
};
}
</script>
<input use:enter='{e => e.target.blur()}'>