用Vue开发手机网页应用遇到过的坑

methods和computed内方法的写法要注意,否则可能出现在Android手机上正常,而在iPhone手机上却有问题,正确的写法是:
methods:{
m1:function(){
alert('hello')
}
}

错误的写法:
methods:{
m1(){
alert('hello')
}
}

猜你喜欢

转载自109625163.iteye.com/blog/2374791