由此可见,当代码运行时,会一次调用Vue 的 beforeCreate、created、beforeMount、mounted 四个方法,直至完成组件的挂载。而update阶段,要在数据发生改变时(比如更新message字段 vm.message = 'Hahahaha~')才出发;destroy阶段,要在调用vm.$destroy()后才触发。
vm.message = 'Hahahaha~'
vm.$destroy()
大佬更多详细
https://www.jianshu.com/p/b88572d8f80a