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

19 lines
337 B

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