Will all pages of mpvue inherit src/app.vue?

No detailed information was found. As far as I understand it, src/app.vue is a global configuration, because I wrote an onLaunch method in app.vue, which jumps to authorization without authorization, but then I write an onUnload method, which has no effect and can only be written in a specific page. The onUnload code is as follows:

onUnload() {
    wx.navigateTo({
        url: "/pages/index/main"
    });
}

what is the reason for this?

May.28,2022
Menu