Version Shopware 6.4.20
My custom plugin imports a component by overriding SwProductDetail. Imported components require the filterOptions of SwProductList.
SwProductDetail
filterOptions
SwProductList
How to read the list of SwProductList in the above component?
// myComponent.js ... const fnFilterOptions = Shopware.Component.getComponentRegistry().get('sw-product-list').computed.listFilterOptions; const filters = fnFilterOptions.call(this) ...