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

    Interface UseElementSize

    Represents the size of an HTMLElement.

    interface UseElementSize {
        height: Readonly<Ref<number>>;
        width: Readonly<Ref<number>>;
        stop(): void;
    }
    Index

    Properties

    Methods

    Properties

    height: Readonly<Ref<number>>

    A readonly reference to the element's height.

    width: Readonly<Ref<number>>

    A readonly reference to the element's width.

    Methods