The Mini Program incident is different.

these are the two click events of Mini Program. Is there any difference?

the first type

switchNav: function(event) {
    console.log(event)
}

second type:

    switchNav(event) {
        console.log(event)
    }
Mar.22,2021

one is ES5, the other is ES6, the same

Menu