Vue OpenAPI Query Documentation
    Preparing search index...

    Type Alias LazyQueryFetchOptions<TQueryParams>

    Per-call options for useLazyQuery's fetch() method.

    type LazyQueryFetchOptions<
        TQueryParams extends Record<string, unknown> = Record<string, never>,
    > = {
        queryParams?: TQueryParams;
        axiosOptions?: AxiosRequestConfigExtended;
    }

    Type Parameters

    • TQueryParams extends Record<string, unknown> = Record<string, never>

      The query parameters type for this operation

    Index

    Properties

    queryParams?: TQueryParams

    Query string parameters for this fetch call.

    Additional axios config for this fetch call (merged with hook-level axiosOptions).