在vue中创建了一个Date()实例a,我想在实例上挂载一个方法b,使var month = a.getMonth()+1;能通过month.b()来调用b方法代码为: var a = new Date();
a.prototype = { b: function () { console.log('111111');
}
} var month = a.getMonth();
month.b();但是语法不通过,请问这是为什么呢?在Vue项目中
添加回答
举报
0/150
提交
取消