In your use case, it seems like component behavior is dynamic, ie. the component fetches data from some backend service and renders it.
There are multiple ways to handle such cases:
Lazy loading of your component, using AJAX. Make sure to uncache this AJAX request to always get latest content from ...