Composable to get the category from current CMS context
export function useCategory(
category?: Ref<Schemas["Category"]>,
): UseCategoryReturnexport type UseCategoryReturn = {
/**
* Current category entity
*/
category: ComputedRef<Schemas["Category"]>;
};