下面3种写法,在使用上是相同的
"methods": {
"a"(e){
alert("aaa");
},
["a"](e){
alert("aaa");
},
"a": function(e) {
alert("aaa");
},
}