[Vuejs]-How to make sure that my extension will be loaded after the another one?

0👍

There is no possibility to work with customEvents e.g. that are thrown from Plugin 1 and Plugin 2 is hearing on that? So you do not need an "hard" overwrite? You just pass the data you need to the event and Plugin 2 is doing the stuff it needs to do.

0👍

We have the same problem and saw that there is a possibility to set a overrideIndex. We set it to a high value and it seems that this will always push your plugin to the end of the chain.

Please see:
https://github.com/shopware/platform/blob/0d07dcc18bcdf9d7256e162f6f524d7570c8ade5/src/Administration/Resources/app/administration/src/core/factory/async-component.factory.ts#L293

But i think this is a dirty way. I wonder how it is possible to get a global working solution to extend plugins for all developers.

Leave a comment