# Vue3Core **Repository Path**: angcyo/Vue3Core ## Basic Information - **Project Name**: Vue3Core - **Description**: 2021-11-27 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-11-27 - **Last Updated**: 2022-07-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 2021-11-27 # Vue3 介绍 https://v3.cn.vuejs.org/guide/introduction.html ## Vue3 API https://v3.cn.vuejs.org/api/ ## 生态 - [Vue Router](https://next.router.vuejs.org/zh/introduction.html) - [Vuex](https://next.vuex.vuejs.org/zh/index.html) - [Vite](https://cn.vitejs.dev/guide/) ## 组合式API https://v3.cn.vuejs.org/api/composition-api.html ## 响应式API https://v3.cn.vuejs.org/api/basic-reactivity.html#%E5%93%8D%E5%BA%94%E6%80%A7%E5%9F%BA%E7%A1%80-api # 使用 ## 生命周期 https://v3.cn.vuejs.org/guide/instance.html#%E7%94%9F%E5%91%BD%E5%91%A8%E6%9C%9F%E5%9B%BE%E7%A4%BA ## 生命周期钩子 https://v3.cn.vuejs.org/guide/composition-api-lifecycle-hooks.html 选项式 API|Hook inside setup ---|--- beforeCreate|Not needed* created|Not needed* beforeMount|onBeforeMount mounted|onMounted beforeUpdate|onBeforeUpdate updated|onUpdated beforeUnmount|onBeforeUnmount unmounted|onUnmounted errorCaptured|onErrorCaptured renderTracked|onRenderTracked renderTriggered|onRenderTriggered activated|onActivated deactivated|onDeactivated ## 单文件组件 `