In my .Vue file, I have defined a template along with its subcomponents with the intention of allowing customers to override this template without needing to modify any javascript code.
If there exists an element with id="search-result", then that element should be used. If not, then the one defined in the *.Vue file should be utilized.
Is there a way for me to achieve this? I've looked into inline-Templates, but the issue is that my structure is nested with numerous subcomponents. This would require the user to define the entire template instead of just overriding the specific submodule they wish to change.
Any suggestions or hints for how I can accomplish this?