vue3-生命周期
链接:http://ggz.longpanda.top/article_detail?id=26
import { onBeforeMount, onMounted, onBeforeUpdate, onUpdated, onBeforeUnmount, onUnmounted, onActivated, onDeactivated, onErrorCaptured } from 'vue'
export default {
setup() {
onBeforeMount(() => { // ... })
onMounted(() => { // ... })
onBeforeUpdate(() => { // ... })
onUpdated(() => { // ... })
onBeforeUnmount(() => { // ... })
onUnmounted(() => { // ... })
onActivated(() => { // ... })
onDeactivated(() => { // ... })
onErrorCaptured(() => { // ... })
}
}

浙公网安备 33010602011771号