建阶段:setup
我们直接console.log就可以了
console.log("创建");
1
挂载阶段:onBeforeMount(挂载前)、onMounted(挂载完毕)
import { onBeforeMount, onMounted } from 'vue';
// 挂载前
onBeforeMount(() => {
console.log("挂载前");
})
// 挂载完毕
onBeforeMount(() => {
console.log("挂载完毕");
}
更新阶段:onBeforeUpdate(更新前)、onUpdated(更新完毕)
卸载阶段:onBeforeUnmount(卸载前)、onUnmounted(卸载完毕)
// 卸载前 onBeforeUnmount(() => { console.log("卸载前"); }) // 卸载完毕 onUnmounted(() => { console.log("卸载完毕"); })