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

    Interface GlobalAttributes

    interface GlobalAttributes {
        accesskey?: string;
        autocapitalize?:
            | "off"
            | "on"
            | "none"
            | "sentences"
            | "words"
            | "characters";
        autofocus?: Booleanable;
        class?: Stringable;
        contenteditable?: Booleanable;
        dir?: "auto"
        | "ltr"
        | "rtl";
        draggable?: Booleanable;
        enterkeyhint?: string;
        exportparts?: string;
        hidden?: Booleanable;
        id?: string;
        inputmode?: string;
        is?: string;
        itemid?: string;
        itemprop?: string;
        itemref?: string;
        itemscope?: string;
        itemtype?: string;
        lang?: string;
        nonce?: string;
        part?: string;
        slot?: string;
        spellcheck?: Booleanable;
        style?: string;
        tabindex?: number;
        title?: string;
        translate?: "" | "yes" | "no";
    }
    Index

    Properties

    accesskey?: string

    Provides a hint for generating a keyboard shortcut for the current element. This attribute consists of a space-separated list of characters. The browser should use the first one that exists on the computer keyboard layout.

    autocapitalize?: "off" | "on" | "none" | "sentences" | "words" | "characters"

    Controls whether and how text input is automatically capitalized as it is entered/edited by the user.

    autofocus?: Booleanable

    Indicates that an element is to be focused on page load, or as soon as the <dialog> it is part of is displayed.

    class?: Stringable

    A space-separated list of the classes of the element. Classes allows CSS and JavaScript to select and access specific elements via the class selectors or functions like the method Document.getElementsByClassName().

    contenteditable?: Booleanable

    An enumerated attribute indicating if the element should be editable by the user. If so, the browser modifies its widget to allow editing.

    dir?: "auto" | "ltr" | "rtl"

    An enumerated attribute indicating the directionality of the element's text.

    draggable?: Booleanable

    An enumerated attribute indicating whether the element can be dragged, using the Drag and Drop API.

    enterkeyhint?: string

    Hints what action label (or icon) to present for the enter key on virtual keyboards.

    exportparts?: string

    Used to transitively export shadow parts from a nested shadow tree into a containing light tree.

    hidden?: Booleanable

    A Boolean attribute indicates that the element is not yet, or is no longer, relevant.

    id?: string

    The id global attribute defines a unique identifier (ID) which must be unique in the whole document.

    inputmode?: string

    Provides a hint to browsers as to the type of virtual keyboard configuration to use when editing this element or its contents.

    is?: string

    Allows you to specify that a standard HTML element should behave like a registered custom built-in element.

    itemid?: string

    The unique, global identifier of an item.

    itemprop?: string

    Used to add properties to an item.

    itemref?: string

    Properties that are not descendants of an element with the itemscope attribute can be associated with the item using an itemref.

    itemscope?: string

    itemscope (usually) works along with itemtype to specify that the HTML contained in a block is about a particular item.

    itemtype?: string

    Specifies the URL of the vocabulary that will be used to define itemprops (item properties) in the data structure.

    lang?: string

    Helps define the language of an element: the language that non-editable elements are in, or the language that editable elements should be written in by the user.

    nonce?: string

    A cryptographic nonce ("number used once") which can be used by Content Security Policy to determine whether or not a given fetch will be allowed to proceed.

    part?: string

    A space-separated list of the part names of the element. Part names allows CSS to select and style specific elements in a shadow tree via the ::part pseudo-element.

    slot?: string

    Assigns a slot in a shadow DOM shadow tree to an element: An element with a slot attribute is assigned to the slot created by the <slot> element whose name attribute's value matches that slot attribute's value.

    spellcheck?: Booleanable

    An enumerated attribute defines whether the element may be checked for spelling errors.

    style?: string

    Contains CSS styling declarations to be applied to the element.

    tabindex?: number

    An integer attribute indicating if the element can take input focus (is focusable), if it should participate to sequential keyboard navigation, and if so, at what position.

    title?: string

    Contains a text representing advisory information related to the element it belongs to.

    translate?: "" | "yes" | "no"

    An enumerated attribute that is used to specify whether an element's attribute values and the values of its Text node children are to be translated when the page is localized, or whether to leave them unchanged.