在组件化的框架中,比如Angular、React或Vue,都为组件定义了生命周期这个概念,每个组件实例在被创建时都要经过一系列的初始化过程,例如:需要设置数据监听、编译模板、将实例挂载到 DOM 并在数据变化时更新 DOM 等。同时,在这个过程中也会运行一些叫做生命周期钩子的函数,它们提供给用户在组件的不同阶段添加自己的代码的机会。
使用过Vue2.x的朋友肯定对它的生命周期钩子很熟悉了,因为在实际的开发过程中我们多多少少会用到他们,比如 created、mounted、destoryed等等。而在Vue3.0中,Vue2.x Options API形式的生命周期钩子函数和新的Composition API都可以使用,来看个示例代码就明白了:
const { onMounted } = Vue const MyComp = { // Options API mounted() { console.log(' mounted 1') }, setup() { // Composition API onMounted(() => { console.log('++++++ mounted 2') }) } }
两种形式的生命周期函数可以共存(当然实际使用的时候最好只选用一种),它们都会被执行。Composition API形式的生命周期函数都是在 setup 方法中被调用注册。
最后,在实际的开发过程中,请注意一下Options API形式的组件生命周期钩子和Composition API之间的实际对应关系:
beforeCreate -> 请使用 setup()
created -> 请使用 setup()
beforeMount -> onBeforeMount
mounted -> onMounted
beforeUpdate -> onBeforeUpdate
updated -> onUpdated
beforeDestroy -> onBeforeUnmount
destroyed -> onUnmounted
errorCaptured -> onErrorCaptured
整体代码如下:
const { createComponent, createApp, reactive } = Vue // 计数器组件 const Counter = { props: { initCount: { type: Number, default: 0 } }, template: ` <div class="counter-display"> <span class="counter-label">恭喜你,你已经写了</span> <span class="counter-text">{{ state.count }}</span> <span class="counter-label">斤代码!</span> </div> <div class="counter-btns"> <button class="btn" @click="increase">写一斤</button> <button class="btn" @click="reset">删库啦</button> </div> `, // 相当于 vue2.x beforeCreated, created setup(props) { const countOps = useCount(props.initCount) console.log("Counter ===> 相当于 vue2.x 中 beforeCreated, created") return { ...countOps } }, onBeforeMount() { console.log("Counter ===> 相当于 vue2.x 中 beforeMount") }, onMounted() { console.log("Counter ===> 相当于 vue2.x 中 mounted") }, onBeforeUpdate() { console.log("Counter ===> 相当于 vue2.x 中 beforeUpdate") }, onUpdated() { console.log("Counter ===> 相当于 vue2.x 中 updated") }, onBeforeUnmount() { console.log("Counter ===> 相当于 vue2.x 中 beforeDestroy") }, onUnmounted() { console.log("Counter ===> 相当于 vue2.x 中 destroyed") }, onErrorCaptured() { console.log("Counter ===> 相当于 vue2.x 中 errorCaptured") } } function useCount(initCount) { const state = reactive({ count: initCount }) console.log("state reactive", state) const increase = () => { state.count++ } const reset = () => { state.count = 0 } return { state, increase, reset } } // 创建一个 跟组件 app const App = createComponent({ // 这个就相对于 在另一个 .vue 文件 引用 Counter 组件,需要在 components 属性局部注册组件 components: { Counter, }, // 挂载到 App 模板中 template: ` <div class="container"> <h3>计数器示例</h3> <Counter /> </div> `, setup() { console.log("App ===> 相当于 vue2.x 中 beforeCreated, created") }, onBeforeMount() { console.log("App ===> 相当于 vue2.x 中 beforeMount") }, onMounted() { console.log("App ===> 相当于 vue2.x 中 mounted") }, onBeforeUpdate() { console.log("App ===> 相当于 vue2.x 中 beforeUpdate") }, onUpdated() { console.log("App ===> 相当于 vue2.x 中 updated") }, onBeforeUnmount() { console.log("App ===> 相当于 vue2.x 中 beforeDestroy") }, onUnmounted() { console.log("App ===> 相当于 vue2.x 中 destroyed") }, onErrorCaptured() { console.log("Counter ===> 相当于 vue2.x 中 errorCaptured") } }) // 启动 // container 就是相当于 new Vue() 中 el 元素 const container = document.querySelector("#app") // createApp() 就是相当于 new Vue() 内部返回的就是 new Vue() const app = createApp() // 挂载组件 app.mount(App, container)
转载自:https://zhuanlan.zhihu.com/p/95968847
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。
更新动态
- 江志丰2012-七天[豪记][WAV+CUE]
- 黑鸭子2003《聆听柔情HQCD》[日本版][WAV+CUE]
- 群星《奔赴!万人现场 第5期》[FLAC/分轨][587.07MB]
- 关大洲《国家宝藏 第四季原声音乐 关大洲作品》[320K/MP3][109.49MB]
- 关大洲《国家宝藏 第四季原声音乐 关大洲作品》[FLAC/分轨][527.23MB]
- LOL双城之战大乱斗什么时候更新 双城大乱斗上线更新时间介绍
- s14全球总决赛冠军皮肤有什么 2024T1冠军皮肤选择一览
- faker加里奥s14决赛什么出装 faker加里奥s14决赛出装介绍
- 《马里奥与路易吉RPG:兄弟齐航》Fami通34分:路易吉存在感拉满
- 数据挖掘者新发现:NS继任机型或支持4K分辨率
- 宫本茂谈任天堂未来:研发费用增加但注重创意与传承
- 陈小云.2000-餐厅综艺金榜【海丽唱片】【WAV+CUE】
- 卓文萱.2008-翻滚吧!蛋炒饭电视原声带【滚石】【FLAC分轨】
- 顺子.2001-AND.MUSICS.THERE【EMI百代】【WAV+CUE】
- 《三国志8重置版》劝降机制介绍