前端Vue3coreEssentialsLifecycle Hooks本页总览Lifecycle Hooks Registering Lifecycle Hooks <script setup>import { onMounted } from 'vue'onMounted(() => { console.log(`the component is now mounted.`)})</script> Lifecycle Diagram setup (Composition API) beforeCreate created beforeMount mounted beforeUpdate updated beforeUnmount unmounted