A child components destroyed
hook is called before its detached
hook
#3870
Labels
destroyed
hook is called before its detached
hook
#3870
Vue.js version
1.0.28
Reproduction Link
https://jsfiddle.net/w0r85tus/
Steps to reproduce
What is Expected?
detached
before they aredestroyed
.destroyed
hook should always be the very last hook fired.What is actually happening?
destroyed
hook is getting called first, then thedetached
hook later.Note that it makes no difference if the component has a
transition
applied. You can remove thetransition
attribute from the modal but the hook order stays the same.When I'm using a tool like selectize.js inside a modal, I want Selectize to stay until the modal is off-screen, then destroy it. If I use the
beforeDestroy
ordestroyed
events, they will fire before the modal has transitioned out and the effect is that you will see a flash of the destroyed Selectize control.The text was updated successfully, but these errors were encountered: