+
80
-

vue3的onshow事件怎么没了?

vue

vue3的onshow事件怎么没了?


网友回复

+
0
-

一直没有onshow事件,你那是小程序的事件。

vue3中有9个旧的生命周期钩子,我们可以在setup 方法中访问,vue3去掉了vue2中的 beforeCreate 和 created 事件 import { onMounted, onUpdated, onUnmounted } from 'vue' onBeforeMount onMounted onBeforeUpdate onUpdated onBeforeUnmount onUnmounted onActivated onDeactivated onErrorCaptured

我知道答案,我要回答