@nextcloud/dialogs
    Preparing search index...

    Interface SetupContext<E>

    interface SetupContext<E extends EmitsOptions = {}> {
        attrs: Data;
        emit: EmitFn<E>;
        listeners: Record<string, Function | Function[]>;
        slots: Slots;
        expose(exposed?: Record<string, any>): void;
    }

    Type Parameters

    Index

    Properties

    Methods

    Properties

    attrs: Data
    emit: EmitFn<E>
    listeners: Record<string, Function | Function[]>

    Equivalent of this.$listeners, which is Vue 2 only.

    slots: Slots

    Methods

    • Parameters

      • Optionalexposed: Record<string, any>

      Returns void