Home > @shopware-pwa/composables > useCms

# useCms() function

This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.

Signature:

export declare function useCms(rootContext: ApplicationVueContext): {
    page: ComputedRef<PageResolverProductResult | PageResolverResult<CmsPage> | null>;
    categoryId: ComputedRef<string | null>;
    loading: Ref<boolean>;
    search: (path: string, query?: any) => Promise<void>;
    error: Ref<any>;
    getBreadcrumbsObject: ComputedRef<PageBreadcrumb>;
};

# Parameters

Parameter Type Description
rootContext ApplicationVueContext

Returns:

{ page: ComputedRef<PageResolverProductResult | PageResolverResult<CmsPage> | null>; categoryId: ComputedRef<string | null>; loading: Ref<boolean>; search: (path: string, query?: any) => Promise<void>; error: Ref<any>; getBreadcrumbsObject: ComputedRef<PageBreadcrumb>; }