This repository was archived by the owner on Jan 3, 2021. It is now read-only.

Description
When a component is wrapped in a keep-alive tag () the Meta Info for the page is not updated after the initial load, as the created hook is not being called.
Repro steps:
- Create a vue app with a Vue Router
- Create 2 routes
- Make 1 of these routes keep-alive
- Set a different Meta Title for each route
- Start the app
- Navigate to the Keep-Alive page. The title will be OK
- Navigate to the regular page. The title will be OK
- Go back to the Keep-Alive page. The title will NOT BE OK.
The title should be updated on focus/beforeEachRoute, not on created.