Akash
Akash
Yep. I came across this today and turns out I had proxy object in my state! Thanks guys
@VladStepanov I get that lifecycle. i.e. `Created`, `Mounted`, `Activated`. And then the cycle of `Deactivated`, `Activated`. But in this case, it goes from `Deactivated` to `Mounted`, `Activated`. I think `Mounted`...
@VladStepanov if you check the stackblitz I linked above, you'd see that it re-fires `Mounted` again when I switch between routes of a dynamic route. Ideally I would remove listeners...
@AloisSeckar iirc the default behaviour components inside in keep alive is to activate/deactivate, here's an [example](https://sfc.vuejs.org/#eNrNVlFvmzAQ/isWfUgqBWjXaQ8sqRZpD5OmSXvYnso0EWMSt2Aj26Stovz3fbaBkDTNsu1liYTsu/N333cHB5tgXtfRumFBEkw1Vbw2RDPT1Lep4FUtlSGfZMVIoWRFRlFsNzZ81Lu/Sm1073e7/YC5oiu+3kG0+/2gDVGsINs2yLtIKqgU2hDaKMWE+ZYtyMzGjUeWxugyFV2EyRYavg0OOb4Tu3Bc3KpNmYptKqaxlwmB2BhW1WVmGHaETHO+JrTMtJ6lQc4qmQbODs+iMUbigN3gtw4LqRA0/jmxuS8JF45DGvQhyQN7RgSsQ2OHfjeCI/SoownkZ9SAYbKndTazoGT7Y4DwgZacPgBhryjDLC1lQjYbfxyinYbYp+skfWasnpdI2hpSAyOV6IcALkm45WlF3e1SgUlfIJfzdhr3R1xFfaZ97GmMwmI1jQflxlab59IuI1tr37xCChMWWcXL54ToTOhQM8WL99a3kCpnKiHX9RPRsuQ5uWCMDVyhynLe6IS8qZ+cuc7ynIslDFc4c4OLM1eZWnIRGlkDjFVD20KiRFVC3naxDfKDQ8moSYiATmeVa6aKUj6GTwnJGiNhRJWhZNdVr6dn8A4ErjvQli4IhCUrTM/75qVf8eXqtYC9UlBKnQvN0hKuWnJhmPLhGX1YKtmIPCEXxZX9HxMdAm5od7l7MwQO5CUrWwMvcg+eXdn/i/jI3+BnHGhDXlfY17Stp3+o3b0UTAI/UMIqq6N7LQXmmsNLWwce0cRnsDYMGrtPg5UxtU7iWBfUDqZ7HUm1jLGKVCMMx9BjugoXSj7ifgBwGrjB0mLEMKIaIZ4SkGbqFOZB6AtcCwtFW0jphu3hbCZlJpb2CUT4bk5vpJjbGuPxyidEii+ob7v8Lqrd5iNzrbBh7bxt6+DKZG/u7uh4fElmt1217KSVJYtKuRynQQvopm0aYBSDtbva8z2PUwg9i+MYPedTGE0XdBxjIPUUSr4LO8Q5923hh6EHdy/Mfiq+MgDR3v5d+T/315H81wYfB/nDDh8H+YsWHwINenxmh/03zxktHnzr2Cafh959MP0Wf/sLGvxGXQ==),
here's what the docs say, > When a component is toggled inside , its activated and deactivated lifecycle hooks will be invoked accordingly, providing an alternative to mounted and unmounted,...
I thought I was the only one but I think the recent version is causing the same issues for me