Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 580 Bytes

04-svelte-body.md

File metadata and controls

15 lines (11 loc) · 580 Bytes
title
<svelte:body>
<svelte:body onevent={handler} />

Similarly to <svelte:window>, this element allows you to add listeners to events on document.body, such as mouseenter and mouseleave, which don't fire on window. It also lets you use actions on the <body> element.

As with <svelte:window> and <svelte:document>, this element may only appear the top level of your component and must never be inside a block or element.

<svelte:body onmouseenter={handleMouseenter} onmouseleave={handleMouseleave} use:someAction />