标签:需要 函数 pre div vue remount error upd bsp
1.Composition API
1.新增setup() 执行时间是在以前 beforeCreate 和 created 之间
2.生命周期以及其他vue的函数的使用需要按需引用
import { onBeforeMount, onMounted, onBeforeUpdate, onUpdated, onBeforeUnmount, onUnmounted, onActivated, onDeactivated, onErrorCaptured } from ‘vue‘
export default {
setup() {
onBeforeMount(() => {
// ...
})
onMounted(() => {
// ...
})
onBeforeUpdate(() => {
// ...
})
onUpdated(() => {
// ...
})
onBeforeUnmount(() => {
// ...
})
onUnmounted(() => {
// ...
})
onActivated(() => {
// ...
})
onDeactivated(() => {
// ...
})
onErrorCaptured(() => {
// ...
})
}
}
标签:需要 函数 pre div vue remount error upd bsp
原文地址:https://www.cnblogs.com/tutao1995/p/13045091.html