参考答案:
需要用到哪个生命周期函数,就将对应函数的import进来,接着在setup中调用即可
解析:
1.由于setup是随着beforeCreate和created这两个生命周期钩子运行的,因此在你无需显式地定义它们。换句话说,任何想写进这两个钩子的代码,都应当直接写在setup方法里面。
2.其他的生命周期函数在setup中使用的时候只需要在前面加上一个‘on’即可,如mounted的生命周期函数在setup中写为onMounted
3.所有在setup中使用的生命周期函数都需要import引入,如:import {onMounted} from 'vue'
4.setup中生命周期函数的写法是在调用的生命周期函数中写上一个回调函数,如onMounted函数的写法:
代码语言:javascript复制export default {
setup() {
// mounted
onMounted(() => {
console.log('Component is mounted!')
})
}
}
下面这个表格描述了setup内部的钩子
选项 API | setup内部的钩子 |
---|---|
beforeCreate | 不需要 |
created | 不需要 |
beforeMount | onBeforeMount |
mounted | onMounted |
beforeUpdate | onBeforeUpdate |
updated | onUpdated |
beforeUnmount | onBeforeUnmount |
unmounted | onUnmounted |
errorCaptured | onErrorCaptured |
renderTracked | onRenderTracked |
renderTriggered | onRenderTriggered |