Question - What is the purpose of keep alive tag?
Answer -
Keep-alive tag is an abstract component used to preserve component state or avoid re-rendering. When you wrapped tag around a dynamic component, it caches the inactive component instances without destroying them.
Let's see the example usage of it,
When there are multiple conditional children, it requires that only one child is rendered at a time.