www说
可以使用箭头函数methods: { A: function() {
setInterval(() => {
this.B();
}, 500)
}, B: function() { console.log('func B')
}
}或者methods: { A: function() {
setInterval(this.B, 500)
}, B: function() { console.log('func B')
}
}