Home > @vsf-enterprise/sapcc > UseProductSearchComposable
UseProductSearchComposable interface
Composable method for performing product searches and storing results.
Signature:
export interface UseProductSearchComposable
Properties
| Property | Type | Description |
|---|---|---|
| error | ComputedProperty<UseProductSearchError> | An indicator of useProductSearch composable methods errors |
| loading | ComputedProperty<boolean> | An indicator of useProductSearch composable methods progress. |
| reset | () => void | A method for resetting the composable's state. |
| result | ComputedProperty<ProductSearchPage> | A product search page object. |
| search | (props?: ProductSearchProps) => Promise<void> | A method performing a product search. |