@yesstudio/nuxt-composables
    Preparing search index...

    Interface BodyEvents

    interface BodyEvents {
        onafterprint?: string;
        onbeforeprint?: string;
        onbeforeunload?: string;
        onerror?: string;
        onhashchange?: string;
        onload?: string;
        onmessage?: string;
        onoffline?: string;
        ononline?: string;
        onpagehide?: string;
        onpageshow?: string;
        onpopstate?: string;
        onresize?: string;
        onstorage?: string;
        onunload?: string;
    }
    Index

    Properties

    onafterprint?: string

    Script to be run after the document is printed

    onbeforeprint?: string

    Script to be run before the document is printed

    onbeforeunload?: string

    Script to be run when the document is about to be unloaded

    onerror?: string

    Script to be run when an error occurs

    onhashchange?: string

    Script to be run when there has been changes to the anchor part of the a URL

    onload?: string

    Fires after the page is finished loading

    onmessage?: string

    Script to be run when the message is triggered

    onoffline?: string

    Script to be run when the browser starts to work offline

    ononline?: string

    Script to be run when the browser starts to work online

    onpagehide?: string

    Script to be run when a user navigates away from a page

    onpageshow?: string

    Script to be run when a user navigates to a page

    onpopstate?: string

    Script to be run when the window's history changes

    onresize?: string

    Fires when the browser window is resized

    onstorage?: string

    Script to be run when a Web Storage area is updated

    onunload?: string

    Fires once a page has unloaded (or the browser window has been closed)