1.第一种定义方式,简写版(推荐使用这种) hanshu1(){ console.log("第一种函数定义方式,简写版") }, 2.第二种定义方式,官方版 hanshu2:function(){ console.log("第二种函数定义方式,官方版") }, 3.函数调用方式 //函数调用方式 this.hanshu1() this.hanshu2()