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

    Interface UseAsyncComputedOptions

    Represents the configuration options for an asynchronous computed effect.

    interface UseAsyncComputedOptions {
        onError?(error: unknown): void;
    }
    Index

    Methods

    Methods

    • A function to handle errors that occur during the computation.

      Parameters

      • error: unknown

        The error encountered during the asynchronous computation.

      Returns void