ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

vue3 生命周期

2026/9/12 18:21:12 拓冰建站 浏览量
vue3 生命周期

与 2.x 版本生命周期相对应的组合式 API

beforeCreate -> 使用 setup()
created -> 使用 setup()
beforeMount -> onBeforeMount
mounted -> onMounted
beforeUpdate -> onBeforeUpdate
updated -> onUpdated
beforeDestroy -> onBeforeUnmount
destroyed -> onUnmounted
errorCaptured -> onErrorCaptured

使用

	import {onBeforeMount,onMounted } from 'vue'//在组件被挂载之前调用onBeforeMount(()=>{console.log('组件被挂载之前')})//在组件被挂载之后调用onMounted(() => {console.log('在组件被挂载之后')});

在这里插入图片描述